1、key

<el-dialog
            title=""
            :visible.sync="dialogVisible"
            @close="dialogClose">
            <iframe :src="detailsHref" frameborder="0" width="100%" height="600px" :key="detailsHref"></iframe>
        </el-dialog>

 

2、v-if

<el-dialog
            title=""
            :visible.sync="dialogVisible"
            @close="dialogClose">
            <iframe :src="detailsHref" frameborder="0" width="100%" height="600px" v-if='showIframe'></iframe>
        </el-dialog>

 

相关文章:

  • 2022-12-23
  • 2023-02-09
  • 2023-03-19
  • 2022-12-23
  • 2021-09-08
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案