working on UserCreate form...
This commit is contained in:
29
resources/js/components/Users/UserNav.vue
Normal file
29
resources/js/components/Users/UserNav.vue
Normal file
@@ -0,0 +1,29 @@
|
||||
<template>
|
||||
<div class="flex justify-between mb-4">
|
||||
<n-button
|
||||
:renderIcon="() => { return renderIcon(Back)}"
|
||||
@click="$emit('clickBack')"
|
||||
>
|
||||
Zurück
|
||||
</n-button>
|
||||
|
||||
<n-button
|
||||
secondary
|
||||
type="primary"
|
||||
:renderIcon="() => { return renderIcon(Save) }"
|
||||
@click="$emit('clickSave')"
|
||||
>
|
||||
Speichern
|
||||
</n-button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { renderIcon } from '@/util'
|
||||
import {
|
||||
ArrowBackRound as Back,
|
||||
SaveRound as Save,
|
||||
} from '@vicons/material'
|
||||
|
||||
|
||||
</script>
|
||||
Reference in New Issue
Block a user