mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-23 18:37:23 -08:00
26 lines
388 B
Vue
26 lines
388 B
Vue
<template>
|
|
<pre>
|
|
{{ prettyJson }}
|
|
</pre>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "@nuxtjs/composition-api";
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
data: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
setup(props) {
|
|
const prettyJson = JSON.stringify(props.data, null, 2);
|
|
|
|
return {
|
|
prettyJson,
|
|
};
|
|
},
|
|
});
|
|
</script>
|