mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-23 18:37:23 -08:00
26 lines
527 B
Vue
26 lines
527 B
Vue
<template>
|
|
<v-toolbar color="transparent" flat>
|
|
<BaseButton color="null" rounded secondary @click="$router.go(-1)">
|
|
<template #icon> {{ $globals.icons.arrowLeftBold }}</template>
|
|
{{ $t('general.back') }}
|
|
</BaseButton>
|
|
<slot></slot>
|
|
</v-toolbar>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "@nuxtjs/composition-api";
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
back: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|