Files
gr_report_web/src/components/index.ts

7 lines
153 B
TypeScript
Raw Normal View History

2026-02-02 23:17:44 +08:00
import type { App } from 'vue'
import { Icon } from './Icon'
export const setupGlobCom = (app: App<Element>): void => {
app.component('Icon', Icon)
}