我将数据存储在 Vuex 商店中。这里的样子:
基本上,我想在视图中显示 first_name 。所以我返回了这样的数据:
data () {
return {
first_name: this.$store.state.user.attributes.first_name,
}
},
Ans 很容易想在 div 中显示它:
<div>{{first_name}}</div>
但我得到vue.esm.js:1906 TypeError: Cannot read properties of undefined (reading 'first_name')