push
This commit is contained in:
11
lib/component/form/checkbox/index.ts
Normal file
11
lib/component/form/checkbox/index.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import nsCheckbox from './checkbox.vue';
|
||||
import nsCheckboxGroup from './checkbox-group.vue';
|
||||
import nsCheckboxAllGroup from './checkbox-allgroup.vue';
|
||||
import type { App } from 'vue';
|
||||
|
||||
export const NsCheckbox = function (app: App) {
|
||||
app.component(nsCheckbox.name, nsCheckbox);
|
||||
app.component(nsCheckboxGroup.name, nsCheckboxGroup);
|
||||
app.component(nsCheckboxAllGroup.name, nsCheckboxAllGroup);
|
||||
return app;
|
||||
};
|
||||
Reference in New Issue
Block a user