index.js
485 Bytes
import mine from './mine';
import channel from './channel';
import favorite from './favorite';
import news from './news';
export default function() {
return {
namespaced: true,
state: {
fetchNoticeList:false,
noticeList:[],
fetchNoticePage: 1,
fetchNoticeLastedTime: 0,
},
mutations: {
},
actions: {
},
modules: {
mine: mine(),
channel: channel(),
favorite: favorite(),
news: news(),
}
};
}