You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

11 lines
327 B

import formItem from './form-item.vue';
import childForm from './child-form.vue';
import form from './form.vue';
import type { App } from 'vue';
export const NsForm = function (app: App) {
app.component(form.name, form);
app.component(formItem.name, formItem);
app.component(childForm.name, childForm);
return app;
};