Vue中的$store
$store 是挂载在 Vue 实例上的(即Vue.prototype)。我们可以通过在Vue对象的原型上添加store属性来使得每一个Vue的实例都可以访问store属性。// 引入Vueimport Vue from 'vue';// 为Vue对象的原型添加Vue.prototype.$store = store;...
·
$store
是挂载在 Vue
实例上的(即Vue.prototype
)。
我们可以通过在Vue
对象的原型上添加store
属性来使得每一个Vue
的实例都可以访问store
属性。
// 引入Vue
import Vue from 'vue';
// 为Vue对象的原型添加
Vue.prototype.$store = store;
更多推荐
已为社区贡献1条内容
所有评论(0)