返回列表 发帖

Vue 3.0 全局API#参数

接收三个参数:type,props 和 children

#type
类型:String | Object | Function
详细:
HTML 标签名、组件或异步组件。使用返回 null 的函数将渲染一个注释。此参数是必需的。

#props
类型:Object
详细:
一个对象,与我们将在模板中使用的 attribute、prop 和事件相对应。可选。

#children
类型:String | Array | Object
详细:
子代 VNode,使用 h() 生成,或者使用字符串来获取“文本 VNode”,或带有插槽的对象。可选。

  h('div', {}, [
    'Some text comes first.',
    h('h1', 'A headline'),
    h(MyComponent, {
      someProp: 'foobar'
    })
  ])

返回列表