mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-13 02:25:06 +08:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
![]() |
import { h } from 'vue'
|
||
|
import type { VNode } from 'vue'
|
||
|
import { Icon } from '@/components/Icon'
|
||
|
|
||
|
export const useIcon = (props: IconTypes): VNode => {
|
||
|
return h(Icon, props)
|
||
|
}
|