gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 15:43:51 25 4
gpt4 key购买 nike

<iframe id="frame" width="100%" height="100%">

</ifrme>

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

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

最佳答案

对我来说最简单的方法是使用 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>

关于html - 使用没有src属性的vuejs在iframe中渲染组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43088256/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com