YunaiV 2f16744652 移除 Form、Table、Search、XButton、XTextButton、DictTag、ContentWrap、Descriptions 的全局注册
(cherry picked from commit d32537e3ef8926e179beb308c7f91850e95caa34)
2023-06-13 13:04:05 +08:00

7 lines
153 B
TypeScript

import type { App } from 'vue'
import { Icon } from './Icon'
export const setupGlobCom = (app: App<Element>): void => {
app.component('Icon', Icon)
}