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

18 lines
507 B
TypeScript
Raw Normal View History

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