用的是vue2在项目的main.js里面:const store = new Vuex.Store({
state: {
isCur:0
},
})
new Vue({
el: '#app',
template: '<App/>',
router,
store,
components: { App }
})在其中的一个组件中:link v-for="(value,index) in Anav" v-text="value.text" :to="value.path" :class="{cur:isCur==index}" @click.native="this.$store.state.isCur=index"></router-link>这里的“this.$store.state.isCur”访问不到,请问是什么原因?
添加回答
举报
0/150
提交
取消