push
This commit is contained in:
13
lib/component/form/radio/index.ts
Normal file
13
lib/component/form/radio/index.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { App } from 'vue';
|
||||
import nsRadio from './radio.vue';
|
||||
import nsRadioButton from './radio-button.vue';
|
||||
import nsRadioGroup from './radio-group.vue';
|
||||
import nsRadioApi from './radio-api.vue';
|
||||
|
||||
export const NsRadio = function (app: App) {
|
||||
app.component(nsRadio.name, nsRadio);
|
||||
app.component(nsRadioButton.name, nsRadioButton);
|
||||
app.component(nsRadioGroup.name, nsRadioGroup);
|
||||
app.component(nsRadioApi.name, nsRadioApi);
|
||||
return app;
|
||||
};
|
||||
Reference in New Issue
Block a user