12345678910111213141516171819202122 |
- import Vue from "vue";
- import Vuex from "vuex";
- // 这里可以引入模块文件
- // import location from "./modules/location";
- Vue.use(Vuex);
- const store = new Vuex.Store({
- state: {
- //公共的变量,这里的变量不能随便修改,只能通过触发mutations的方法才能改变
- },
- mutations: {
- //相当于同步的操作
- },
- actions: {
- //相当于异步的操作,不能直接改变state的值,只能通过触发mutations的方法才能改变
- },
- modules: {
- // location,
- },
- });
- export default store;
|