wilded
3/26/2019 - 9:49 AM

Javascript If else Simplified / Vue.js getter/Computed

var y = (x == 2 ? "yes" : "no");

Vue.js getter/Computed

get dialogTitle() {
    return this.eventInformation
      ? String(
          this.$t('hours.entry.titleUpdate') +
            ' ' +
            format(this.selectedDate, 'DD.MMMM YYYY'),
        )
      : String(
          this.$t('hours.entry.titleCreate') +
            ' ' +
            format(this.selectedDate, 'DD.MMMM YYYY'),
        );
  }