Dominik Milacher 0dc24c4db7
Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 50s
Extend ux layer and overhaul panoramablick-saalbach.at
2025-11-21 21:17:52 +01:00

21 lines
451 B
Vue

<script setup lang="ts">
const props = defineProps<{
type: string
}>()
const { l, p } = useContentInjected()
const details = computed(() => l.value[props.type])
</script>
<template>
<UButton
:to="details.external ? details.link : p(details.link)"
:target="details.external ? '_blank' : undefined"
variant="solid"
:trailing-icon="details.icon"
:external="details.external"
>
{{ details.label }}
</UButton>
</template>