bookclub-manager/nuxt/pages/admin/votes.vue

23 lines
408 B
Vue

<script setup lang="ts">
import AddVotes from '~/components/admin/AddVotes.vue'
definePageMeta({ middleware: ['role-admin'] })
</script>
<template>
<div>
<UCard class="w-full md:w-1/2">
<template #header>
<h1 class="font-sans text-3xl font-bold">
Benutzer Aktionen
</h1>
</template>
<AddVotes />
</UCard>
</div>
</template>
<style scoped>
</style>