mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 18:23:18 -04: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>
 |