mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-28 16:54:19 -04:00
75 lines
1.6 KiB
Vue
75 lines
1.6 KiB
Vue
<template>
|
|
<v-toolbar class="card-btn" flat height="0" extension-height="0">
|
|
<template v-slot:extension>
|
|
<v-col></v-col>
|
|
<div v-if="open">
|
|
<v-btn
|
|
class="mr-2"
|
|
fab
|
|
dark
|
|
small
|
|
color="error"
|
|
@click="deleteRecipeConfrim"
|
|
>
|
|
<v-icon>mdi-delete</v-icon>
|
|
</v-btn>
|
|
<Confirmation
|
|
title="Delete Recpie"
|
|
message="Are you sure you want to delete this recipie?"
|
|
color="error"
|
|
icon="mdi-alert-circle"
|
|
ref="deleteRecipieConfirm"
|
|
v-on:confirm="deleteRecipe()"
|
|
/>
|
|
|
|
<v-btn class="mr-2" fab dark small color="success" @click="save">
|
|
<v-icon>mdi-content-save</v-icon>
|
|
</v-btn>
|
|
<v-btn class="mr-5" fab dark small color="secondary" @click="json">
|
|
<v-icon>mdi-code-braces</v-icon>
|
|
</v-btn>
|
|
</div>
|
|
<v-btn color="accent" fab dark small @click="editor">
|
|
<v-icon>mdi-square-edit-outline</v-icon>
|
|
</v-btn>
|
|
</template>
|
|
</v-toolbar>
|
|
</template>
|
|
|
|
<script>
|
|
import Confirmation from "./Confirmation";
|
|
|
|
export default {
|
|
props: {
|
|
open: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
|
|
components: {
|
|
Confirmation
|
|
},
|
|
|
|
methods: {
|
|
editor() {
|
|
this.$emit("editor");
|
|
},
|
|
save() {
|
|
this.$emit("save");
|
|
},
|
|
deleteRecipeConfrim() {
|
|
this.$refs.deleteRecipieConfirm.open();
|
|
},
|
|
deleteRecipe() {
|
|
this.$emit("delete");
|
|
},
|
|
json() {
|
|
this.$emit("json");
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
</style> |