index.js
369 Bytes
import actions from './actions';
import mutations from './mutations';
export default function() {
return {
namespaced: true,
state: {
fetchArticleList: false,
articleList: [],
articleDetail: null,
fetchArticleListByTopic: false,
articleListByTopic: [],
articleLastedTimeByTopic: 0
},
actions,
mutations
};
}