UNPKG

265 BJavaScriptView Raw
1import { h, Fragment } from 'vue'
2
3function jsx(type, props, key) {
4 const { children } = props
5 delete props.children
6 if (arguments.length > 2) {
7 props.key = key
8 }
9 return h(type, props, children)
10}
11
12export { Fragment, jsx, jsx as jsxs, jsx as jsxDEV }