基于vue3.0和element-plus的组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
259 B

2 years ago
import { Store } from 'noob-mengyxu';
2 years ago
import state from './state';
import mutations from './mutations';
import actions from './actions';
const getters = new Store.Getters();
2 years ago
export default Store.createStore({
2 years ago
state,
getters,
2 years ago
mutations,
actions,
});