vue-tables-2 (サーバー テーブル) を使用してテーブルを表示しています。vue-tables-2 の組み込みのページネーションを使用しています。
テーブルを更新すると、テーブルの最初のページにリダイレクトされます。更新を呼び出す前のページにユーザーをリダイレクトしたい。したがって、現在のページのインデックスを取得する方法を知りたいので、セットページを使用してユーザーを特定のページにリダイレクトできます。
v-server-table skin="table table-striped text-left" name="Table" ref="Table" :url="route('materials.index', {id: $route.params.id}).toString()" :columns="columns" :options="options">
</v-server-table>
<script>
export default {
props :['id'],
data(){
return {
}
}
}
</script>