mirror of
https://github.com/unraid/api.git
synced 2026-01-03 23:19:54 -06:00
14 lines
495 B
Vue
14 lines
495 B
Vue
<template>
|
|
<client-only>
|
|
<div class="flex flex-row items-center justify-center gap-6 p-6 text-gray-200 bg-zinc-800">
|
|
<NuxtLink to="/" class="underline hover:no-underline focus:no-underline" active-class="text-orange">
|
|
Test Vue Components
|
|
</NuxtLink>
|
|
<NuxtLink to="/webComponents" class="underline hover:no-underline focus:no-underline" active-class="text-orange">
|
|
Test Web Components
|
|
</NuxtLink>
|
|
</div>
|
|
<slot />
|
|
</client-only>
|
|
</template>
|