Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 50s
21 lines
451 B
Vue
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>
|