I'm trying to use setPage method of vue-tables-2 library after used fetchMore from vue-apollo, But the issue its when the query get the new result, the table it's still on the first page
mounted: function(){
var ref = this
Event.$on('vue-tables.pagination', function(data) {
ref.showMore()
ref.$refs.table.setPage(data)
})
},