JinZHouXiYiJi_DaPin2/examples/pages/DesignerView/toolbars/iconList/index.ts

14 lines
336 B
TypeScript
Raw Normal View History

2023-12-05 13:23:01 +08:00
import { createVNode, render } from 'vue'
import IconFont from './IconFont.vue'
const showIconCard = () => {
const vm = createVNode(IconFont, {}, null)
const container = document.createElement('div')
const app = document.querySelector('#app')
render(vm, container)
app?.appendChild(container)
}
export default showIconCard