1234567891011121314151617181920212223242526272829303132333435363738 |
- <!-- Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import { getFieldLinkClasses } from './initializeFieldLinkClasses.ts'
- import type { RouteLocationRaw } from 'vue-router'
- withDefaults(
- defineProps<{
- link: RouteLocationRaw
- linkIcon?: string
- }>(),
- {
- linkIcon: 'form-field-link',
- },
- )
- const classMap = getFieldLinkClasses()
- </script>
- <template>
- <div :class="classMap.container">
- <div
- :class="classMap.base"
- class="flex h-full items-center focus:outline-none"
- >
- <CommonLink
- v-if="link"
- :link="link"
- :class="classMap.link"
- class="flex items-center justify-center"
- open-in-new-tab
- >
- <CommonIcon :name="linkIcon" size="small" decorative />
- </CommonLink>
- </div>
- </div>
- </template>
|