|
|
@@ -1,6 +1,11 @@
|
|
|
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)
|
|
|
}
|
|
|
|