33 lines
633 B
Vue
33 lines
633 B
Vue
<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> |