This commit is contained in:
nelle 2024-09-18 15:59:37 -06:00
parent b777c5f78e
commit 2fdff79ebc

View file

@ -1,7 +1,7 @@
<template> <template>
<MkStickyContainer> <MkStickyContainer>
<template #header><MkPageHeader /></template> <template #header><MkPageHeader /></template>
<MkSpacer :content-max="800"> <MkSpacer :content-max="4096">
<MkPagination ref="pagingComponent" :pagination="pagination"> <MkPagination ref="pagingComponent" :pagination="pagination">
<template #empty> <template #empty>
<div class="_fullinfo"> <div class="_fullinfo">
@ -44,7 +44,7 @@ import {instance} from "@/instance";
const pagination = { const pagination = {
endpoint: "i/favorites" as const, endpoint: "i/favorites" as const,
limit: 500, limit: 10,
}; };
const pagingComponent = ref<InstanceType<typeof MkPagination>>(); const pagingComponent = ref<InstanceType<typeof MkPagination>>();