sweet_crm/app.vue

15 lines
536 B
Vue
Raw Normal View History

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