è possibile passare questo parametro nelle proprietà calcolate in Vue.Js. Vedo che quando si calcolano i getter / setter, possono prendere un parametro e assegnarlo a una variabile. come qui dalla documentazione :
// ...
computed: {
fullName: {
// getter
get: function () {
return this.firstName + ' ' + this.lastName
},
// setter
set: function (newValue) {
var names = newValue.split(' ')
this.firstName = names[0]
this.lastName = names[names.length - 1]
}
}
}
// ...
È anche possibile questo:
// ...
computed: {
fullName: function (salut) {
return salut + ' ' + this.firstName + ' ' + this.lastName
}
}
// ...
Dove la proprietà calcolata accetta un argomento e restituisce l'output desiderato. Tuttavia, quando provo questo, ricevo questo errore:
vue.common.js: 2250 TypeError non rilevati: fullName non è una funzione (...)
Dovrei usare metodi per tali casi?