Files
SaaS-lib/lib/component/tree/index.ts

10 lines
249 B
TypeScript
Raw Normal View History

2024-05-15 17:29:42 +08:00
import type { App } from 'vue';
import nsTree from './tree.vue';
import nsTreeApi from './tree-api.vue';
export const NsTree = function (app: App) {
app.component(nsTree.name, nsTree);
app.component(nsTreeApi.name, nsTreeApi);
return app;
};