之前的代码
<el-dialog :title="title" :visible.sync="open" width="850px" append-to-body :close-on-click-modal="false" >
优化之后的代码
<el-dialog :title="title" :visible.sync="open" v-if="open" width="850px" append-to-body :close-on-click-modal="false" :destroy-on-close="true" >
增加了两个属性
v-if="open"
:destroy-on-close="true"