在vuex中使用moudle
安装 npm install vuex --save 引入 //main.js import store from './store'//引入store new Vue({ el: '#app', router, store, components: { App }, template: '<App/>' }) 新建store文件夹 目录结构 store │ index.js │ ├─feeds │ actions.js │ getters.js │ index.js │ mutation-type.js │ mutations.js │ state.js │ └─movies ``actions.js ``getters.js ``index.js ``mutation-type.js ``mutations.js ``state.js index.js /* * @Author: your name * @Date: 2019-12-25 13:13:28 * @LastEditTime : 2019-12-25 13:13:50 * @LastEditors : Please set LastEditors * @Description: In User Settings Edit * @FilePath: /gitlab-test/src/store/index.js */