mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-06 13:05:36 -04:00
27 lines
475 B
Vue
27 lines
475 B
Vue
<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 setup lang="ts">
|
|
defineProps({
|
|
issue: {
|
|
type: String,
|
|
required: false,
|
|
default: "",
|
|
},
|
|
});
|
|
</script>
|