22 lines
392 B
Vue
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> |