Files
SaaS-lib/lib/component/form/range/index.ts
xuziqiang d0155dbe3c push
2024-05-15 17:29:42 +08:00

8 lines
169 B
TypeScript

import type { App } from 'vue';
import nsRange from './range.vue'
export const NsRange = function (app: App) {
app.component(nsRange.name, nsRange);
return app;
};