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