Lint auto-fixes

This commit is contained in:
Lucidiot 2019-11-20 22:11:59 +01:00
parent 35590c0bbd
commit 62a0780de2
Signed by: lucidiot
GPG Key ID: 3358C1CA6906FB8D
2 changed files with 2 additions and 2 deletions

View File

@ -8,5 +8,5 @@ Vue.config.productionTip = false;
new Vue({
router,
render: h => h(App),
render: (h) => h(App),
}).$mount('#app');

View File

@ -56,7 +56,7 @@ export default {
return this.doorData.reverse;
},
doors() {
const doorCopy = Object.assign({}, this.doorData);
const doorCopy = { ...this.doorData };
delete doorCopy.reverse;
return doorCopy;
},