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>


 


作者:孟繁贵