2022-01-08 22:24:34 -09:00
|
|
|
<template>
|
2024-06-29 04:58:58 -05:00
|
|
|
<BannerWarning
|
2025-06-20 00:09:12 +07:00
|
|
|
:title="$t('banner-experimental.title')"
|
|
|
|
:description="$t('banner-experimental.description')"
|
2024-06-29 04:58:58 -05:00
|
|
|
>
|
2025-06-20 00:09:12 +07:00
|
|
|
<template
|
|
|
|
v-if="issue"
|
|
|
|
#default
|
|
|
|
>
|
|
|
|
<a
|
|
|
|
:href="issue"
|
|
|
|
target="_blank"
|
|
|
|
>{{ $t("banner-experimental.issue-link-text") }}</a>
|
2024-06-29 04:58:58 -05:00
|
|
|
</template>
|
|
|
|
</BannerWarning>
|
2022-01-08 22:24:34 -09:00
|
|
|
</template>
|
2022-01-09 21:04:24 -09:00
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
issue: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2022-08-15 23:55:51 +02:00
|
|
|
</script>
|