Add admin page that can edit users
Add admin page that's only accessible to admins with a listing of users and the ability to edit the access types of those users.
This commit is contained in:
parent
3be7f8be05
commit
87525a6ef5
5 changed files with 170 additions and 0 deletions
14
pages/admin.vue
Normal file
14
pages/admin.vue
Normal file
|
@ -0,0 +1,14 @@
|
|||
<template>
|
||||
<main>
|
||||
<h1>Admin</h1>
|
||||
<h2>Users</h2>
|
||||
<TableUsers />
|
||||
</main>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue