This commit is contained in:
2025-09-08 16:36:34 +08:00
parent 5ff3425279
commit f142289a5b

View File

@@ -0,0 +1,9 @@
import { h } from 'vue'
import { ElIcon } from 'element-plus-secondary'
import Icon from './src/Icon.vue'
const hIcon = (name: string) => {
return h(ElIcon, null, {
default: () => h(name),
})
}
export { Icon, hIcon }