mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-04-10 23:15:34 -04:00
chore: Nuxt 4 upgrade (#7426)
This commit is contained in:
26
frontend/app/components/global/BannerExperimental.vue
Normal file
26
frontend/app/components/global/BannerExperimental.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user