Node-Red configuration
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.js 303B

123456789101112131415
  1. const { h, Fragment } = require('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. exports.jsx = jsx
  11. exports.jsxs = jsx
  12. exports.jsxDEV = jsx
  13. exports.Fragment = Fragment