Some checks failed
Backend Actions / check (push) Failing after 3m26s
Frontend Actions / check (push) Failing after 3m17s
Backend Actions / test (push) Failing after 3m20s
Frontend Actions / test (push) Successful in 51s
Frontend Actions / build (push) Successful in 56s
Backend Actions / build (push) Failing after 10m57s
14 lines
302 B
Vue
14 lines
302 B
Vue
<template>
|
|
<RouterLink
|
|
:to="`/servers/${id}`"
|
|
class="block p-3 hover:bg-sky-100 rounded-lg transition-colors duration-200 border border-transparent hover:border-sky-300"
|
|
>
|
|
<slot />
|
|
</RouterLink>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{
|
|
id: string | number
|
|
}>()
|
|
</script> |