Vue表2 setPage方法在使用fetch后不起作用

时间:2019-01-26 05:53:38

标签: vue.js vuejs2 vue-tables-2 vue-apollo

在从vue-apollo中使用fetchMore之后,我试图使用vue-tables-2库的setPage方法,但是当查询获得新结果时,它的问题仍然存在于表中

mounted: function(){
  var ref = this
  Event.$on('vue-tables.pagination', function(data) {   
    ref.showMore()
    ref.$refs.table.setPage(data)
  })
},

Vue-tables-2

2 个答案:

答案 0 :(得分:0)

我认为vue-tables.pagination事件不适用于您的代码。首先您必须创建一个数据属性来存储当前页面。存储您在其上执行了最后操作的页面数。页面转到该数据属性。

答案 1 :(得分:0)

SetPage接收页面号,而不是页面数据。