Files
mixtape/zero.Backoffice.UI/app/modules/settings/plugin.ts
T

17 lines
444 B
TypeScript
Raw Normal View History

2021-12-09 16:02:39 +01:00
import { ZeroPlugin, ZeroPluginOptions } from '../../core';
import { defineAsyncComponent } from 'vue';
const Page = () => import('./settings.vue');
export default {
name: "zero.settings",
install(app: ZeroPluginOptions)
{
//app.vue.component('ui-countrypicker', defineAsyncComponent(Picker));
app.route({ path: '/settings', component: Page });
//app.editor('country', null);
//app.editorField('')
}
} as ZeroPlugin;