mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-06 04:55:35 -04:00
17 lines
241 B
Vue
17 lines
241 B
Vue
<template>
|
|
<pre>
|
|
{{ prettyJson }}
|
|
</pre>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const props = defineProps({
|
|
data: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
});
|
|
|
|
const prettyJson = JSON.stringify(props.data, null, 2);
|
|
</script>
|