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

import Vue from 'vue'
const Child = {
  props: {
      html: {
        type: String,
        default: '66666'
      }
  },
  render(h) {
    const com = Vue.extend({
        template: this.html
    })
    return h(com)
  }
}


局部组件:
components: {
    Child
  },

你可能感兴趣的:(富文本里有组件页面渲染出来)