Files
SaaS-lib/lib/component/form/range/index.ts

8 lines
169 B
TypeScript
Raw Normal View History

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