implemented some login stuff.

This commit is contained in:
sockenklaus
2023-07-04 01:08:21 +02:00
parent 7a2b63ee07
commit f98fc36e51
11 changed files with 124 additions and 40 deletions

View File

@@ -4,7 +4,7 @@
<script setup>
import { Link, usePage } from '@inertiajs/vue3'
import { h, ref } from 'vue';
import { h, ref, watch } from 'vue';
import { NIcon, NButton } from 'naive-ui'
import {
GroupsFilled as Users,
@@ -13,7 +13,6 @@
} from '@vicons/material'
const { request } = usePage().props
const activeKey = ref(request.url)
const menuOptions = ref([
@@ -30,7 +29,7 @@
icon: renderIcon(Events)
},
{
label: () =>
label: () =>
h(
Link, {
href: "/users",