admin管理员组文章数量:1341736
I am wanting to use my Vuex store data in my app and template.
My Veux store:
var Vue = require('vue');
var Vuex = require('vuex');
Vue.use(Vuex)
let store = new Vuex.Store({
state: {
user: {},
},
}
}
module.exports = store
I want to use the store data in my app and display it in the template. But, when setting the data in the data
property, this.$store
is undefined
. I am, however, able to access it in the beforeRender
function:
var Vue = require('vue'),
store = require('../../link/to/my/store');
module.exports = {
el: '#selector',
store,
ponents: {},
data: {
saving: false,
user: this.$store.state.user // this.state is not available here
},
created: function(){},
beforeCreate: function() {
console.log(this.$state.state) // this.$state is available here
// i get my data in the form of a json string from the dom
// and update the global store with the data
let user = document.querySelector('#user-data')
if (user) this.$store.dispatch('updateUser', JSON.parse(user.innerHTML))
},
methods: {}
}
};
I have also tried with a puted property but to no avail.
I am wanting to use my Vuex store data in my app and template.
My Veux store:
var Vue = require('vue');
var Vuex = require('vuex');
Vue.use(Vuex)
let store = new Vuex.Store({
state: {
user: {},
},
}
}
module.exports = store
I want to use the store data in my app and display it in the template. But, when setting the data in the data
property, this.$store
is undefined
. I am, however, able to access it in the beforeRender
function:
var Vue = require('vue'),
store = require('../../link/to/my/store');
module.exports = {
el: '#selector',
store,
ponents: {},
data: {
saving: false,
user: this.$store.state.user // this.state is not available here
},
created: function(){},
beforeCreate: function() {
console.log(this.$state.state) // this.$state is available here
// i get my data in the form of a json string from the dom
// and update the global store with the data
let user = document.querySelector('#user-data')
if (user) this.$store.dispatch('updateUser', JSON.parse(user.innerHTML))
},
methods: {}
}
};
I have also tried with a puted property but to no avail.
Share edited Apr 27, 2017 at 16:11 thanksd 55.7k23 gold badges165 silver badges154 bronze badges asked Apr 27, 2017 at 15:20 johnmjohnm 1211 gold badge1 silver badge3 bronze badges 4- vuex.vuejs/en/getters.html – thanksd Commented Apr 27, 2017 at 15:20
- Sorry i am afraid that this.$store is still not defined so i am unable to use this.$store.getters.getterMethod() – johnm Commented Apr 27, 2017 at 15:36
- 2 data needs to be a function: vuejs/2016/02/06/mon-gotchas – thanksd Commented Apr 27, 2017 at 15:53
- Yep thats correct!! in the documentation it only mentions returning data as a function in a ponent but for anyone else who has this issue, return data as a function for your apps as well! PS thanksd add this as an answer and i will give you correct answer – johnm Commented Apr 27, 2017 at 16:04
1 Answer
Reset to default 10As per the Vue documentation:
When defining a ponent, data must be declared as a function that returns the initial data object.
So, change:
data: {
saving: false,
user: this.$store.state.user
},
to this:
data: function () {
return {
saving: false,
user: this.$store.state.user
};
}
Then the this
in the function will have a reference to $store
.
本文标签: javascriptVueJS how to reference thisstore in component data propertyStack Overflow
版权声明:本文标题:javascript - VueJS: how to reference this.$store in component data property - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743683353a2521488.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论