29 lines
527 B
Markdown
29 lines
527 B
Markdown
# Pagination
|
|
|
|
<script setup>
|
|
import { ref } from "vue";
|
|
|
|
const currentPage = ref(1)
|
|
|
|
function switchPage(page) {
|
|
currentPage.value = page
|
|
}
|
|
</script>
|
|
<DemoContainer style="background-color: var(--color-bg)">
|
|
<Pagination :page="currentPage" :count="100" @switch-page="switchPage" />
|
|
</DemoContainer>
|
|
|
|
```vue
|
|
<script setup>
|
|
import { ref } from "vue";
|
|
|
|
const currentPage = ref(1)
|
|
|
|
function switchPage(page) {
|
|
currentPage.value = page
|
|
}
|
|
</script>
|
|
|
|
<Pagination :page="currentPage" :count="100" @switch-page="switchPage" />
|
|
```
|