防止vue组件渲染不更新
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>
作者:孟繁贵 Email:meng010387@126.com 期待共同进步!