我在vuejs&amp ;;中尝试分页My code in fiddle
v-for="(number, item) in items | filterBy name in 'name' | limitBy count offset"
我的问题是如何在分页中获取索引?
例如:
我有分页或第一页的数据:
索引:" 1" - 凯西斯帕克斯
索引:" 2" - Gladys Tate
然后如果我点击分页2,我想索引继续
指数:3 - 香农
指数:4 - Rosetta Scott
答案 0 :(得分:0)
我建议将每个项目的输出放入子组件中,并将该项目的索引作为参数传递给数组。还有其他方法可以做到这一点,例如将项目从vue模板传递到方法中并查找字段的索引,例如:
// vue template
{{ whatIndex(item) }}
// vue js
vue.methods.whatIndex = function (item) {
// some logic to lookup the name from this.items
return i
}
答案 1 :(得分:0)
最快的方式:
git config