vue 嵌入iframe的一些问题
父级项目引入iframe的页面:
<template>
<div>
<iframe :src="src" id="attendanceManagementiframe" class="iframe" iframeborder="0"></iframe>
</div>
</template>
<script>
import {
mapState } from 'vuex'
export default {
data() {
return {
src: ''
}
},
methods: {
init() {
this.src = ''
setTimeout(() => {
this.src = `http://localhost.lingzhuyun.com:8800/hrmsweb/#/?token=${
this.token
}`
}, 300)
}
},
computed: {
...mapState(