mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* feat(frontend): ✨ add user recipe export functionality * remove depreciated folders * change/remove depreciated folders * add testing variable in config * add GUID support for group_id * improve testing feedback on 422 errors * remove/cleanup files/folders * initial user export support * delete unused css * update backup page UI * remove depreciated settings * feat: ✨ export download links * fix #813 * remove top level statements * show footer * add export purger to scheduler * update purge glob * fix meal-planner lockout * feat: ✨ add bulk delete/purge exports * style(frontend): 💄 update UI for site settings * feat: ✨ add version checker * update documentation Co-authored-by: hay-kot <hay-kot@pm.me>
		
			
				
	
	
		
			44 lines
		
	
	
		
			725 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			725 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
 | 
						|
<template>
 | 
						|
  <v-card
 | 
						|
    color="background"
 | 
						|
    flat
 | 
						|
    class="pb-2"
 | 
						|
    :class="{
 | 
						|
      'mt-8': section,
 | 
						|
    }"
 | 
						|
  >
 | 
						|
    <v-card-title class="headline pl-0 py-0">
 | 
						|
      <v-icon v-if="icon !== ''" left>
 | 
						|
        {{ icon }}
 | 
						|
      </v-icon>
 | 
						|
      {{ title }}
 | 
						|
    </v-card-title>
 | 
						|
    <v-card-text v-if="$slots.default" class="pt-2 pl-0">
 | 
						|
      <p class="pb-0 mb-0">
 | 
						|
        <slot />
 | 
						|
      </p>
 | 
						|
    </v-card-text>
 | 
						|
    <v-divider class="mb-3"></v-divider>
 | 
						|
  </v-card>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    title: {
 | 
						|
      type: String,
 | 
						|
      default: "Place Holder",
 | 
						|
    },
 | 
						|
    icon: {
 | 
						|
      type: String,
 | 
						|
      default: "",
 | 
						|
    },
 | 
						|
    section: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |