mealie/frontend/components/global/BannerExperimental.vue
Michael Genson f4827abc1d
feat: Offline Shopping List (#3760)
Co-authored-by: boc-the-git <3479092+boc-the-git@users.noreply.github.com>
2024-06-29 09:58:58 +00:00

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>