使用没有src属性的vuejs在iframe中渲染组件

新手上路,请多包涵
<iframe id="frame" width="100%" height="100%">

</ifrme>

我想在此 iframe 中呈现组件。是否有在 iframe 中创建 html 元素或呈现组件的选项?

 new Vue({
   el:'#frame',
   store:store,
   router:router,
   render: component
})

原文由 Vishal Dodiya 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 1.3k
2 个回答

您可以参考下面的链接这对我帮助很大。这是链接和代码片段。

 Vue.component('i-frame', {
  render(h) {
    return  h('iframe', {
      on: { load: this.renderChildren }
    })
  },
  beforeUpdate() {
    //freezing to prevent unnessessary Reactifiation of vNodes
    this.iApp.children = Object.freeze(this.$slots.default)
  },
  methods: {
    renderChildren() {
      const children = this.$slots.default
      const body = this.$el.contentDocument.body
      const el = document.createElement('DIV') // we will mount or nested app to this element
      body.appendChild(el)

      const iApp = new Vue({
        name: 'iApp',
        //freezing to prevent unnessessary Reactifiation of vNodes
        data: { children: Object.freeze(children) },
        render(h) {
          return h('div', this.children)
        },
      })

      iApp.$mount(el) // mount into iframe

      this.iApp = iApp // cache instance for later updates


    }
  }
})

Vue.component('test-child', {
  template: `<div>
  <h3>{{ title }}</h3>
  <p>
  <slot/>
  </p>
  </div>`,
  props: ['title'],
  methods: {
    log:  _.debounce(function() {
      console.log('resize!')
    }, 200)
  },
  mounted() {
    this.$nextTick(() => {
      const doc = this.$el.ownerDocument
      const win = doc.defaultView
      win.addEventListener('resize', this.log)
    })
  },
  beforeDestroy() {
    const doc = this.$el.ownerDocument
    const win = doc.defaultView
    win.removeEventListener('resize', this.log)
  }
})

new Vue({
  el: '#app',
  data: {
    dynamicPart: 'InputContent',
    show: false,
  }
})

https://jsfiddle.net/Linusborg/ohznser9/

原文由 Vishal Dodiya 发布,翻译遵循 CC BY-SA 4.0 许可协议

对我来说最简单的方法是使用 srcdoc 属性。它加载原始 html 覆盖 src 属性。

 <template>
    <iframe :srcdoc="html"></iframe>
</template>

更新:更详细的示例:考虑用户的文本区域 html 输入并希望显示在 iframe 中。


<template>
  <div id="app">
    <textarea v-model="html"></textarea>
    <iframe :srcdoc="html"></iframe>
  </div>
</template>

<script>
export default {
  name: "App",
  data(){
    return {
      html:"<h1>Hello I am H1 block</h1>"
    }
  }
};
</script>

原文由 Bedram Tamang 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题