把需要computed的值返回一个带参数的函数即可给computed传参
html 代码
<div>{{ count(3) }}</div> // 显示 4
vue 代码
computed: {
count: {
return function (index) {
return index + 1
}
}
}
把需要computed的值返回一个带参数的函数即可给computed传参
html 代码
<div>{{ count(3) }}</div> // 显示 4
vue 代码
computed: {
count: {
return function (index) {
return index + 1
}
}
}
本文标题:vue中如何给computed的值传参
本文链接:https://www.haomeiwen.com/subject/ayxokqtx.html
网友评论