2024-07-30 07:41:22 +00:00
|
|
|
<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>
|
2024-07-31 07:38:59 +00:00
|
|
|
<UButton icon="i-heroicons-pencil-square" />
|
2024-07-30 07:41:22 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2024-07-31 07:38:59 +00:00
|
|
|
<UButton icon="i-heroicons-book-open" to="https://ui.nuxt.com" target="_blank">
|
|
|
|
Open Nuxt UI Documentation
|
|
|
|
</UButton>
|
2024-07-30 07:41:22 +00:00
|
|
|
</UCard>
|
|
|
|
</UContainer>
|
|
|
|
</template>
|