mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	* make entry for NLP model `setup-model` * add comments * feat(frontend): ✨ Rewrite context menu in TS and add 'add to mealplan' options * add note to changelog Co-authored-by: Hayden K <hay-kot@pm.me>
		
			
				
	
	
		
			29 lines
		
	
	
		
			439 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			439 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <VJsoneditor
 | |
|     :value="value"
 | |
|     height="1500px"
 | |
|     :options="options"
 | |
|     :attrs="$attrs"
 | |
|     @input="$emit('input', $event)"
 | |
|   ></VJsoneditor>
 | |
| </template>
 | |
| 
 | |
| <script>
 | |
| import VJsoneditor from "v-jsoneditor";
 | |
| 
 | |
| export default {
 | |
|   components: { VJsoneditor },
 | |
|   props: {
 | |
|     value: {
 | |
|       type: Object,
 | |
|       default: () => ({}),
 | |
|     },
 | |
|     options: {
 | |
|       type: Object,
 | |
|       default: () => ({}),
 | |
|     },
 | |
|   },
 | |
| };
 | |
| </script>
 | |
| 
 |