美文网首页
富文本里有组件页面渲染出来

富文本里有组件页面渲染出来

作者: 0说 | 来源:发表于2022-03-31 15:11 被阅读0次
    import Vue from 'vue'
    const Child = {
      props: {
          html: {
            type: String,
            default: '<el-button @click="btnHandle">66666</el-button>'
          }
      },
      render(h) {
        const com = Vue.extend({
            template: this.html
        })
        return h(com)
      }
    }
    
    
    局部组件:
    components: {
        Child
      },
    

    相关文章

      网友评论

          本文标题:富文本里有组件页面渲染出来

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