vue2-vuex

作者: 我是苏大大 | 来源:发表于2017-02-25 15:48 被阅读0次

    1.cnpm install vuex

    2.入口文件中加入(main.js)

    import Vue from 'vue'

    import App from './vuex'

    import store from './store'

    new Vue({

    el: '#app',

    store,

    render: h => h(App)

    })

    3.新建的文件store.js 中加入

    import Vue from 'vue'

    import Vuex from 'vuex';

    Vue.use(Vuex)

    const state={

    count:411

    }

    // 这个是外加的方法

    const mutations = {

    jia(state){

    state.count ++;

    },

    jian(state){

    state.count --

    }

    }

    // 这个是外加的方法

    export default new Vuex.Store({

    state,

    mutations

    })

    4.在新建的vuex文件中加入代码

    上述文件都是同级目录下新建 的

    相关文章

      网友评论

          本文标题:vue2-vuex

          本文链接:https://www.haomeiwen.com/subject/pfqnwttx.html