返回 slidev
VueUse.vue
1 <script setup lang="ts">
2 defineProps<{
3 name: string
4 }>()
5 </script>
6
7 <template>
8 <div class="px-2 -mx-2 mt-4 py-2">
9 <img src="https://vueuse.org/favicon.svg" class="h-1em -mb-0.5 mr-2 inline-block align-baseline" alt="">
10 <span class="opacity-50">Available in VueUse: </span><a class="font-mono opacity-75 hover:opacity-100" :href="`https://vueuse.org/${name}`">{{ name }}</a>
11 </div>
12 </template>
13
13 lines Plain Text