vue iframe onload
时间: 2023-06-30 17:07:02 浏览: 230
vue-friendly-iframe-一个Vue js组件,用于创建超快速加载,无阻塞的iframe。-Vue.js开发
在 Vue 中使用 iframe,可以通过在 template 中添加一个 iframe 元素并绑定 onload 事件来监听 iframe 加载完成的事件。示例代码如下:
```
<template>
<div>
<iframe src="https://www.example.com" @load="onIframeLoad"></iframe>
</div>
</template>
<script>
export default {
methods: {
onIframeLoad() {
console.log('Iframe loaded');
}
}
};
</script>
```
当 iframe 加载完成时,onIframeLoad 方法会被调用,并且会输出 'Iframe loaded'。你可以在这个方法中执行你需要的操作。
阅读全文