mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-27 10:20:42 +01:00
21 lines
502 B
Vue
21 lines
502 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-screen h-screen flex flex-col justify-center items-center gap-2">
|
|
<h1 class="text-3xl font-bold mb-1">
|
|
Nuxt UI Playground
|
|
</h1>
|
|
|
|
<div class="flex items-center justify-center gap-1">
|
|
<UButton size="lg" to="/__compodium__/devtools" external>
|
|
Browse components
|
|
</UButton>
|
|
<UButton variant="outline" color="neutral" size="lg">
|
|
Documentation
|
|
</UButton>
|
|
</div>
|
|
</div>
|
|
</template>
|