const { h, Fragment } = require('vue')
-function jsx(type, { children, ...props }) {
+function jsx(type, props, key) {
+ const { children } = props
+ delete props.children
+ if (arguments.length > 2) {
+ props.key = key
+ }
return h(type, props, children)
}
import { h, Fragment } from 'vue'
-function jsx(type, { children, ...props }) {
+function jsx(type, props, key) {
+ const { children } = props
+ delete props.children
+ if (arguments.length > 2) {
+ props.key = key
+ }
return h(type, props, children)
}