vue-picture-preview
vue-picture-preview copied to clipboard
图片列表无法清空
可能是这里的问题,只对长度不为0做了判断,而没对长度为0的时候做响应 https://github.com/heikaimu/vue-picture-preview/blob/78b0394c366158ac3db97d797dc3b885bca00e49/src/lib/main/index.vue#L109 我自己加了else以后可以清空数组了,但是有啥后遗症还未测试
this.pictureList = [];
this.$refs.preview.refresh();
加上refresh强制刷新就可以了。和替换所有图片一个办法。
我是试了强制刷新没反应才改的那块