Мәтін сілтемесі
Құжаттама мәтініне, подсказкаларға және сыртқы сілтемелерге арналған inline link, button padding және background styles жоқ.
Орнату
npx alixan-ui-nuxt add text-linkҚолдану
Read the installation guide before copying components.
<script setup lang="ts">
import TextLink from '@/components/ui/text-link/TextLink.vue';
</script>
<template>
<p class="text-muted-foreground">
Read the
<TextLink href="/installation">
installation guide
</TextLink>
before copying components.
</p>
</template>Сыртқы сілтеме
For more detailed information, visit the Nuxt i18n documentation.
<script setup lang="ts">
import InfoBox from '@/components/ui/info-box/InfoBox.vue';
import TextLink from '@/components/ui/text-link/TextLink.vue';
</script>
<template>
<InfoBox>
For more detailed information, visit the
<TextLink
href="https://i18n.nuxtjs.org/"
target="_blank"
>
Nuxt i18n documentation.
</TextLink>
</InfoBox>
</template>API анықтамасы
| Қасиет | Түрі | Әдепкі | Сипаттама |
|---|---|---|---|
| href | string | - | Сілтеменің destination URL-ы. |
| target | '_blank' | '_self' | '_parent' | '_top' | - | Сілтеме target. _blank болса, rel noopener noreferrer болады. |