2022-01-08 22:24:34 -09:00
|
|
|
<template>
|
|
|
|
<v-alert border="left" colored-border type="warning" elevation="2" :icon="$globals.icons.alert">
|
|
|
|
<b>Experimental Feature</b>
|
|
|
|
<div>This page contains experimental or still-baking features. Please excuse the mess.</div>
|
2022-01-09 21:04:24 -09:00
|
|
|
<div v-if="issue != ''" class="py-2">
|
|
|
|
<a :href="issue" target="_blank"> Track our progress here</a>
|
|
|
|
</div>
|
2022-01-08 22:24:34 -09:00
|
|
|
</v-alert>
|
|
|
|
</template>
|
2022-01-09 21:04:24 -09:00
|
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
issue: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: "",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|