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.
14 lines
146 B
Vue
14 lines
146 B
Vue
<template>
|
|
<main>
|
|
<h1>Admin</h1>
|
|
<h2>Users</h2>
|
|
<TableUsers />
|
|
</main>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|