mirror of
https://github.com/Nezumi-2711/Sink.git
synced 2026-09-22 05:41:49 +00:00
15 lines
263 B
Vue
15 lines
263 B
Vue
<script setup>
|
|
defineProps({
|
|
name: String,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLink
|
|
:to="`/dashboard/link?slug=${name}`"
|
|
class="inline-flex items-center justify-start w-full"
|
|
>
|
|
<span class="w-full truncate">{{ name }}</span>
|
|
</NuxtLink>
|
|
</template>
|