• zcdtk's avatar
    update · 20ad17fb
    zcdtk 提交于
    20ad17fb
index.ts 283 字节
import { viewstate } from './state';
import * as actions from './actions';
import * as mutations from './mutations';
import * as getters from './getters';

const state = {
    ...viewstate
}

export default {
    namespaced: true,
    state,
    getters,
    actions,
    mutations
}