仪表盘
版本库
文件存储
活动
搜索
登录
main
/
easegen
数字人
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
模板管理加修改功能和页面 课程中心去除背景和画中画设置,去除模板的上传音频功能
du
2025-05-29
5fae48dee6c88f2bf83d3e429cb018289bb73d24
[easegen.git]
/
easegen-front
/
src
/
hooks
/
web
/
useIcon.ts
1
2
3
4
5
6
7
8
import { h } from 'vue'
import type { VNode } from 'vue'
import { Icon } from '@/components/Icon'
import { IconTypes } from '@/types/icon'
export const useIcon = (props: IconTypes): VNode => {
return h(Icon, props)
}