mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* fix group page * setup group notification for backend * update type generators * script to auto-generate schema exports * setup frontend CRUD interface * remove old notifications UI * drop old events api * add test functionality * update naming for fields * add event dispatcher functionality * bump to python 3.10 * bump python version * purge old event code * use-async apprise * set mealie logo as image * unify styles for buttons rows * add links to banners
		
			
				
	
	
		
			22 lines
		
	
	
		
			533 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			533 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-alert border="left" colored-border type="warning" elevation="2" :icon="$globals.icons.alert">
 | 
						|
    <b>Experimental Feature</b>
 | 
						|
    <div>This page contains experimental or still-baking features. Please excuse the mess.</div>
 | 
						|
    <div v-if="issue != ''" class="py-2">
 | 
						|
      <a :href="issue" target="_blank"> Track our progress here</a>
 | 
						|
    </div>
 | 
						|
  </v-alert>
 | 
						|
</template>
 | 
						|
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    issue: {
 | 
						|
      type: String,
 | 
						|
      required: false,
 | 
						|
      default: "",
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script> |