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.
24 lines
489 B
24 lines
489 B
/** |
|
* @program: kicc-ui |
|
* @description: 全局注册组件 |
|
* @author: entfrm开发团队-王翔 |
|
* @create: 2022/4/26 |
|
*/ |
|
|
|
import type { App } from 'vue'; |
|
import { Button } from './Button'; |
|
import { |
|
Button as AntButton, |
|
Input, |
|
Layout |
|
} from 'ant-design-vue'; |
|
|
|
const compList = [AntButton.Group]; |
|
|
|
export function registerGlobComp(app: App) { |
|
compList.forEach((comp) => { |
|
app.component(comp.name || comp.displayName, comp); |
|
}); |
|
|
|
app.use(Input).use(Button).use(Layout); |
|
}
|
|
|