Files
mixtape/zero.Backoffice.UI/app/modules/search/plugin.ts
T
2022-02-04 15:59:35 +01:00

11 lines
293 B
TypeScript

import { ZeroPlugin, ZeroPluginOptions } from '../../core';
import { defineAsyncComponent } from 'vue';
export default {
name: "zero.search",
install(app: ZeroPluginOptions)
{
app.vue.component('app-search', defineAsyncComponent(() => import('./button.vue')));
}
} as ZeroPlugin;