返回 slidev
SeeAlso.vue
根目录 / docs / .vitepress / theme / components / SeeAlso.vue
1 <script setup lang="ts">
2 defineProps<{
3 links: string[]
4 }>()
5 </script>
6
7 <template>
8 <div class="op-90 mb--1">
9 See also:
10 </div>
11 <LinkCard v-for="link in links" :key="link" :link="link" />
12 </template>
13
13 lines Plain Text