介绍
本文档主要用于描述 ShadcnLink
组件的一些特性和用法。
用法
查看代码
vue
<template>
<ShadcnLink link="/link">Router Link</ShadcnLink>
</template>
<script setup lang="ts">
</script>
外部链接 (external)
查看代码
vue
<template>
<ShadcnLink link="https://github.com/devlive-community/view-shadcn-ui" external>External Link</ShadcnLink>
</template>
<script setup lang="ts">
</script>
打开方式 (target)
查看代码
vue
<template>
<ShadcnLink link="https://github.com/devlive-community/view-shadcn-ui" external target="_blank">Router Link</ShadcnLink>
</template>
<script setup lang="ts">
</script>