我尝试将链接添加到我使用的元素-ui和Inertiajs laravel分页,请帮助。
<el-pagination
v-if="items.last_page > 1"
background
layout="total, prev, pager, next"
:total="items.total"
:page-size="items.per_page"
@current-change="handleCurrentChange ????"
/>控制员:
public function index()
{
$items= Item::latest()->paginate();
return Inertia::render('Item/Index', ['items'=>$items]);
}发布于 2022-11-30 22:26:51
如果有任何解决方案来设置链接的路由,请更新如下:
const handleCurrentChange = (id) => {
Inertia.get(route('items.links', id))
}https://stackoverflow.com/questions/74620218
复制相似问题