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.
16 lines
393 B
16 lines
393 B
// import { message } from 'ant-design-vue';
|
|
import { defineStore } from 'pinia';
|
|
// import { router } from '/nerv-lib/paas/router';
|
|
// import { http } from '/nerv-lib/util/http';
|
|
export const configRegister = defineStore({
|
|
id: 'configRegister',
|
|
/**
|
|
* module 测试用
|
|
* @returns
|
|
*/
|
|
state(): { module: any } {
|
|
return { module: {} };
|
|
},
|
|
getters: {},
|
|
actions: {},
|
|
});
|
|
|