我在vuejs中有以下方法
methods: {
show () {
}
}
在这个show()
方法中,我经常想传递参数,当我将其称为HTML时,我常常不想传递参数。与show (obj)
和show ()
我该怎么做?
由于
答案 0 :(得分:2)
methods: {
show (obj) {
if(obj) {
// code to be executed if obj was passed
} else {
// code to be executed if no obj was passed
}
// code to be executed regardless
}
}
答案 1 :(得分:1)
您还可以通过使用功能参数默认值来设置可选值。参见this vuejs example