mirror of
https://github.com/ArthurDanjou/spanish-learner.git
synced 2026-01-14 12:14:39 +01:00
25 lines
593 B
Vue
25 lines
593 B
Vue
<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>
|