美文网首页
vue 渲染函数&jsx

vue 渲染函数&jsx

作者: 尼莫nemo | 来源:发表于2018-11-22 11:01 被阅读0次

    jsx react模板渲染语法

    Vue.component('anchored-heading', {
      render: function (createElement) {
        return createElement(
          'h' + this.level,   // 标签名称
          this.$slots.default // 子元素数组
        )
      },
      props: {
        level: {
          type: Number,
          required: true
        }
      }
    })
    

    相关文章

      网友评论

          本文标题:vue 渲染函数&jsx

          本文链接:https://www.haomeiwen.com/subject/nmokqqtx.html