index.js
340 Bytes
import actions from './actions';
import mutations from './mutations';
export default function() {
return {
namespaced: true,
state: {
fetching: false,
yohoList: {
notuse: [],
use: [],
overtime: []
},
filterList: [],
showFilter: false
},
actions,
mutations
};
}