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