index.js 537 Bytes
import mine from './mine';
import channel from './channel';
import favorite from './favorite';
import news from './news';
import coupon from './coupon';

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(),
      coupon: coupon()
    }
  };
}