get方法vue img图片没刷新
加一个时间戳
<div style="display: inline-block;width: 100px;" @click="refreshCode"> <img style="height: 32px;width: 96px;border-radius: 4px;" alt="如果看不清楚,请单击图片刷新!" title="点击刷新" class="pointer" :src="src" > </div>
refreshCode: function() {
let time = new Date().getTime();
this.src = "./captcha.jpg?"+time;
},