mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			459 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			459 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <BannerWarning
 | 
						|
    :title="$tc('banner-experimental.title')"
 | 
						|
    :description="$tc('banner-experimental.description')"
 | 
						|
  >
 | 
						|
    <template v-if="issue" #default>
 | 
						|
      <a :href="issue" target="_blank">{{ $t("banner-experimental.issue-link-text") }}</a>
 | 
						|
    </template>
 | 
						|
  </BannerWarning>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    issue: {
 | 
						|
      type: String,
 | 
						|
      required: false,
 | 
						|
      default: "",
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |