10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
![]() |
import { defineStore } from 'pinia';
|
||
|
export const configRegister = defineStore({
|
||
|
id: 'lowCodeMyApp',
|
||
|
state(): { module: any } {
|
||
|
return { module: {} };
|
||
|
},
|
||
|
getters: {},
|
||
|
actions: {},
|
||
|
});
|