added web version 2
Some checks failed
Build and Deploy / Deploy Web (push) Has been cancelled
Build and Deploy / Deploy Discord Bot (push) Has been cancelled

This commit is contained in:
2023-06-01 22:06:11 +02:00
parent 8121b9b975
commit 795c221453
15 changed files with 18827 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div class="mt-5">
<Modal v-if="actionModal.open" :title="actionModal.title">
WIP
<Modal v-if="actionModal.open" :title="actionModal.title" @click="actionModal.func">
<Select v-model="actionModal.reason" :options="[{ name: 'Griefing', value: 'griefing' }]">Reason</Select>
</Modal>
<h1 class="text-2xl font-bold text-primary">
Users
@@ -48,6 +48,7 @@ const { data: teams } = useFetch('/api/team/all')
const actionModal = ref({
open: false,
title: '',
reason: '',
userId: '',
func: null,
})