mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			362 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			362 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-card flat class="pb-2">
 | 
						|
    <h2 class="headline">{{ title }}</h2>
 | 
						|
    <BaseDivider width="200px" color="primary" class="my-2" thickness="1px" />
 | 
						|
    <p class="pb-0 mb-0">
 | 
						|
      <slot />
 | 
						|
    </p>
 | 
						|
  </v-card>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    title: {
 | 
						|
      type: String,
 | 
						|
      default: "Place Holder",
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |