mirror of
https://github.com/yudaocode/yudao-ui-admin-vue3.git
synced 2026-05-04 05:09:01 +00:00
7 lines
153 B
TypeScript
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)
|
|
}
|