[Vuejs]-How can i write this JavaScript ternary shorter?

5👍

this.editionMode = mode === 'edition';
this.creationMode = !this.editionMode;

Leave a comment