9 lines
198 B

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