我可以在 Vue.Js 中的计算属性中传递参数吗?
这是否可以在 Vue.Js 的计算属性中传递参数。我可以看到,当 getters/setter 使用 computed 时,它们可以获取一个参数并将其分配给变量。就像这里从文档:
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]
}
}
}
这是否也有可能:
computed: {
fullName: function (salut) {
return salut + ' ' + this.firstName + ' ' + this.lastName
}
}
其中,计算属性采用参数并返回所需的输出。但是,当我尝试此操作时,我收到此错误:
vue.common.js:2250 Uncaught TypeError: fullName is not a function(...)
我应该在这种情况下使用方法吗?