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'),
);
}