1
2
3
4
5
6
7
8
9
10
11
12
13
| import * as actions from "./actions";
| import * as getters from "./getters";
| import state from "./state";
| import mutations from "./mutations";
|
| export default {
| // 是否对应 模块名 响应数据
| namespaced: true,
| actions,
| state,
| mutations,
| getters
| };
|
|