feat: Admin Page to Manage Vote Actions

main
Flycro 2024-03-20 18:14:29 +01:00
parent fc63da0a3a
commit b001ea937f
1 changed files with 22 additions and 0 deletions

View File

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