1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| /*
| * @Author: zxq
| * @Date: 2022-03-11 09:23:58
| * @LastEditors: zxq
| * @LastEditTime: 2023-03-07 09:34:19
| * @Description: Description
| * @FilePath: \qyp-plat\src\store\index.js
| */
| import Vue from 'vue'
| import Vuex from 'vuex'
| import getters from './getters'
| import app from './modules/app'
| import settings from './modules/settings'
| import user from './modules/user'
| import tagsView from './modules/tagsView'
| Vue.use(Vuex)
|
| const store = new Vuex.Store({
| modules: {
| app,
| settings,
| user,
| tagsView
| },
| getters
| })
|
| export default store
|
|