29 lines
634 B
Vue
29 lines
634 B
Vue
<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> |