Files
SaaS-lib/lib/paas/store/modules/lowCodeMyApp.ts

10 lines
198 B
TypeScript
Raw Normal View History

2024-05-15 17:29:42 +08:00
import { defineStore } from 'pinia';
export const configRegister = defineStore({
id: 'lowCodeMyApp',
state(): { module: any } {
return { module: {} };
},
getters: {},
actions: {},
});