Started implementing vPaginator
This commit is contained in:
@@ -17,11 +17,12 @@
|
||||
{{item}}
|
||||
</label>
|
||||
</li>
|
||||
<li v-show="unionColumns.length === 0">
|
||||
<h6 class="dropdown-header">Keine Spalten auswählbar.</h6>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
{{ unionColumns }}
|
||||
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
33
src/components/VPaginator.vue
Normal file
33
src/components/VPaginator.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<template>
|
||||
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
<li class="page-item">
|
||||
<button class="page-link text-secondary">
|
||||
<i class="bi bi-arrow-left" />
|
||||
Zurück
|
||||
</button>
|
||||
</li>
|
||||
|
||||
<li class="page-item">
|
||||
<button class="page-link text-secondary">
|
||||
Weiter
|
||||
<i class="bi bi-arrow-right" />
|
||||
</button>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
import { useEmployees } from '@/stores/employees'
|
||||
|
||||
const store = useEmployees()
|
||||
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user