This commit is contained in:
syuilo 2018-02-21 01:23:25 +09:00
parent 49d257992f
commit 34f91f04ad
3 changed files with 4 additions and 4 deletions

View file

@ -193,7 +193,7 @@ export default Vue.extend({
if (this.files.some(f => f.id == file.id)) {
const exist = this.files.map(f => f.id).indexOf(file.id);
this.files[exist] = file; // TODO
Vue.set(this.files, exist, file);
return;
}