mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	Setup the file structure for components, pages, layouts, api, and all new frontend structure
		
			
				
	
	
		
			16 lines
		
	
	
		
			224 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			224 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div></div>
 | 
						|
</template>
 | 
						|
  
 | 
						|
  <script lang="ts">
 | 
						|
import { defineComponent } from '@nuxtjs/composition-api'
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  setup() {
 | 
						|
    return {}
 | 
						|
  }
 | 
						|
})
 | 
						|
</script>
 | 
						|
  
 | 
						|
  <style scoped>
 | 
						|
</style> |