primevue-mirror/apps/showcase/doc/paginator/HeadlessDoc.vue

76 lines
2.8 KiB
Vue
Raw Normal View History

2024-10-30 09:11:55 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Headless mode is enabled by defining a <i>container</i> slot that lets you implement entire UI instead of the default elements.</p>
</DocSectionText>
<div class="card">
<Paginator :rows="10" :totalRecords="120">
<template #container="{ first, last, prevCallback, nextCallback, totalRecords }">
<div class="flex items-center gap-2">
<Button icon="pi pi-chevron-left" severity="secondary" text @click="prevCallback" />
<div>Showing {{ first }} to {{ last }} of {{ totalRecords }}</div>
<Button icon="pi pi-chevron-right" severity="secondary" text @click="nextCallback" />
</div>
</template>
</Paginator>
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
<Paginator :rows="10" :totalRecords="120">
<template #container="{ first, last, prevCallback, nextCallback, totalRecords }">
<div class="flex items-center gap-2">
<Button icon="pi pi-chevron-left" severity="secondary" text rounded @click="prevCallback" />
<div>Showing {{ first }} to {{ last }} of {{ totalRecords }}</div>
<Button icon="pi pi-chevron-right" severity="secondary" text rounded @click="nextCallback" />
</div>
</template>
</Paginator>
`,
options: `
<template>
<div class="card">
<Paginator :rows="10" :totalRecords="120">
<template #container="{ first, last, prevCallback, nextCallback, totalRecords }">
<div class="flex items-center gap-2">
<Button icon="pi pi-chevron-left" severity="secondary" text rounded @click="prevCallback" />
<div>Showing {{ first }} to {{ last }} of {{ totalRecords }}</div>
<Button icon="pi pi-chevron-right" severity="secondary" text rounded @click="nextCallback" />
</div>
</template>
</Paginator>
</div>
</template>
<script>
<\/script>
`,
composition: `
<template>
<div class="card">
<Paginator :rows="10" :totalRecords="120">
<template #container="{ first, last, prevCallback, nextCallback, totalRecords }">
<div class="flex items-center gap-2">
<Button icon="pi pi-chevron-left" severity="secondary" text rounded @click="prevCallback" />
<div>Showing {{ first }} to {{ last }} of {{ totalRecords }}</div>
<Button icon="pi pi-chevron-right" severity="secondary" text rounded @click="nextCallback" />
</div>
</template>
</Paginator>
</div>
</template>
<script setup>
<\/script>
`
}
};
}
};
</script>