oa-ui/src/components/index.ts
2024-07-21 13:54:36 +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)
}