6b6a11a2925a35d4d8c0cb8678b61fd9e281ee27bc37c3351d156954e599df56913678d73046a0c61abb9916cc2169b55f988ab27bf8c0ea766b5d57b9416b 265 B

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