用的是vue2在項(xiàng)目的main.js里面:const store = new Vuex.Store({
state: {
isCur:0
},
})
new Vue({
el: '#app',
template: '<App/>',
router,
store,
components: { App }
})在其中的一個(gè)組件中: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”訪問不到,請(qǐng)問是什么原因?
請(qǐng)問vuex在組件的模板內(nèi)怎么調(diào)用?
慕的地6264312
2018-09-03 13:34:00