is this possible to pass parameter in computed properties in Vue.Js. I can see when having getters/setter using computed, they can take a parameter and assign it to a variab
computed: { fullName: (app)=> (salut)=> { return salut + ' ' + this.firstName + ' ' + this.lastName } }
when you want use
{{fullName('your salut')}}