vue(6)-vuex

    xiaoxiao2022-07-03  114

    step1

    npm install --save vuex

    step2

    他的用法与vue-router差不多,main.js中,通过Vue.use(),使用;然后new Vuex.store();然后new Vue( store:store):

    step3

    这样在任何组件里,可以通过{{$store.state.city}}来使用

    同样,在任何组件里可以通过this.$store.commit(..,..)来执行mutations:

    最新回复(0)