no more this.$set needed in vue3

This commit is contained in:
Giulio Ganci 2022-04-25 22:11:53 +02:00
parent daef6f91b0
commit dfe3728269
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ export default {
structure.forEach(feat => {
const val = customizations[this.currentWorkspace.client][feat];
if (val)
this.$set(this.options.includes, feat, true);
this.options.includes[feat] = true;
});
ipcRenderer.on('export-progress', this.updateProgress);