create users through admin page

This commit is contained in:
2025-07-19 22:18:49 +02:00
parent deff81d2ff
commit 7f2aac12e6
65 changed files with 1394 additions and 139 deletions

View File

@@ -3,6 +3,12 @@ import type { HTMLAttributes } from 'vue'
import { useVModel } from '@vueuse/core'
import { cn } from '@/lib/utils'
const domRef = ref<HTMLInputElement>();
defineExpose({
domRef,
});
const props = defineProps<{
defaultValue?: string | number
modelValue?: string | number
@@ -21,6 +27,7 @@ const modelValue = useVModel(props, 'modelValue', emits, {
<template>
<input
ref="domRef"
v-model="modelValue"
data-slot="input"
:class="cn(