Vue JS Pase los parámetros en propiedades calculadas
computed: {
fullName() {
return salut => `${salut} ${this.firstName} ${this.lastName}`
}
}
Muhammad Mabrouk
computed: {
fullName() {
return salut => `${salut} ${this.firstName} ${this.lastName}`
}
}