Files
SaaS-lib/lib/paas/store/modules/lowCodeMyApp.ts
xuziqiang d0155dbe3c push
2024-05-15 17:29:42 +08:00

10 lines
198 B
TypeScript

import { defineStore } from 'pinia';
export const configRegister = defineStore({
id: 'lowCodeMyApp',
state(): { module: any } {
return { module: {} };
},
getters: {},
actions: {},
});