Showing
2 changed files
with
22 additions
and
2 deletions
apps/store/home/index.js
0 → 100644
1 | +import mine from './mine'; | ||
2 | +export default function() { | ||
3 | + return { | ||
4 | + namespaced: true, | ||
5 | + state: { | ||
6 | + fetchNoticeList:false, | ||
7 | + noticeList:[], | ||
8 | + fetchNoticePage: 1, | ||
9 | + fetchNoticeLastedTime: 0, | ||
10 | + }, | ||
11 | + mutations: { | ||
12 | + }, | ||
13 | + actions: { | ||
14 | + | ||
15 | + }, | ||
16 | + modules: { | ||
17 | + mine: mine() | ||
18 | + } | ||
19 | + }; | ||
20 | +} |
@@ -9,9 +9,9 @@ import storeOrder, { | @@ -9,9 +9,9 @@ import storeOrder, { | ||
9 | } from './order'; | 9 | } from './order'; |
10 | import storeList from './list'; | 10 | import storeList from './list'; |
11 | import storeProduct from './product'; | 11 | import storeProduct from './product'; |
12 | -// import storeHome from './home'; | 12 | +import storeHome from './home'; |
13 | import storeAddress from './address'; | 13 | import storeAddress from './address'; |
14 | -import storeNotice from './notice' | 14 | +import storeNotice from './notice'; |
15 | 15 | ||
16 | Vue.use(Vuex); | 16 | Vue.use(Vuex); |
17 | 17 |
-
Please register or login to post a comment