1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-22 22:59:41 +02:00
mealie/frontend/components/global/BannerExperimental.vue

29 lines
497 B
Vue
Raw Normal View History

<template>
<BannerWarning
:title="$t('banner-experimental.title')"
:description="$t('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>