This repository has been archived on 2024-11-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
enzos-events/resources/js/pages/Users/Create.vue
2023-07-11 22:28:58 +02:00

22 lines
392 B
Vue

<template>
<div class="flex justify-between mb-2">
<n-button
>
</n-button>
<n-button
>
Speichern
</n-button>
</div>
</template>
<script setup>
import BELayout from '@/layouts/BELayout.vue'
import UserForm from '@/components/UserForm.vue'
import { renderIcon } from '@/util'
defineOptions({ layout: BELayout })
</script>