Initial commit

This commit is contained in:
2024-07-25 18:08:53 +02:00
committed by GitHub
commit 426cbe8777
27 changed files with 13632 additions and 0 deletions

24
app.vue Normal file
View File

@@ -0,0 +1,24 @@
<template>
<UContainer>
<UCard class="mt-10">
<template #header>
<div class="flex justify-between">
<h1>Welcome to Nuxt UI Starter</h1>
<ColorScheme>
<USelect
v-model="$colorMode.preference"
:options="['system', 'light', 'dark']"
/>
</ColorScheme>
</div>
</template>
<UButton
icon="i-heroicons-book-open"
to="https://ui.nuxt.com"
target="_blank"
>
Open Nuxt UI Documentation
</UButton>
</UCard>
</UContainer>
</template>