mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05: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>
 |