ing 发表于 2020-6-28 17:14

Vue 文档渲染函数的完整示例套娃部分看不懂

本帖最后由 ing 于 2020-6-28 17:42 编辑

红圈内的递归代码意图?我不知道他什么时候会停下

https://cn.vuejs.org/v2/guide/render-function.html#%E5%AE%8C%E6%95%B4%E7%A4%BA%E4%BE%8B

mosou 发表于 2020-6-28 17:59

https://cn.vuejs.org/v2/guide/render-function.html#%E5%AE%8C%E6%95%B4%E7%A4%BA%E4%BE%8B
往下看 有说明


Vue.component('anchored-heading', {
render: function (createElement) {
    return createElement(
      'h' + this.level,   // 标签名称
      this.$slots.default // 子节点数组
    )
},
props: { // 传进来的参数
    level: {
      type: Number,
      required: true
    }
}
})
页: [1]
查看完整版本: Vue 文档渲染函数的完整示例套娃部分看不懂