[TOC]

Render Functions

  1. Vue 默认也推荐使用 template 模板的方式构建 html 结构
  2. Vue 也提供另一种方式:渲染函数(与 React 的 createElement 相似)创建
  3. 渲染函数提供了一些更灵活的编程能力 ```vue ``` h() 函数返回一个虚拟节点 VNode,并且可以嵌套
    h 函数有三个参数

    • type 元素标签
    • props 参数
    • children 内容 (React.createElement 是 …children,Vue3 是一个数组或直接一个节点内容)