Vue JS Pass parâmetros em propriedades computadas
computed: {
fullName() {
return salut => `${salut} ${this.firstName} ${this.lastName}`
}
}
Muhammad Mabrouk
computed: {
fullName() {
return salut => `${salut} ${this.firstName} ${this.lastName}`
}
}