打赏

防止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>

 

posted @ 2018-06-04 21:05  孟繁贵  阅读(3448)  评论(0编辑  收藏  举报
TOP