mealie/frontend/components/global/RecipeJsonEditor.vue
Michael Genson 4c1d855690
feat: Create Recipe From HTML or JSON (#4274)
Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
2024-09-30 15:52:13 +00:00

34 lines
631 B
Vue

<template>
<VJsoneditor
:value="value"
:height="height"
:options="options"
:attrs="$attrs"
@input="$emit('input', $event)"
></VJsoneditor>
</template>
<script lang="ts">
// @ts-ignore v-jsoneditor has no types
import VJsoneditor from "v-jsoneditor";
import { defineComponent } from "@nuxtjs/composition-api";
export default defineComponent({
components: { VJsoneditor },
props: {
value: {
type: Object,
default: () => ({}),
},
height: {
type: String,
default: "1500px",
},
options: {
type: Object,
default: () => ({}),
},
},
});
</script>