25 lines
493 B
Vue
25 lines
493 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: "dashboard"
|
|
})
|
|
|
|
const color_choose = ref(["Cyan","Red","Green","Blue","Purple"])
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<DashboardHeader title="Customization" />
|
|
|
|
<UContainer class="mt-4 max-w-full">
|
|
<UFormField
|
|
label="Color"
|
|
orientation="horizontal"
|
|
description="Select your color theme"
|
|
class=""
|
|
>
|
|
<UColorModeSelect class="" />
|
|
</UFormField>
|
|
</UContainer>
|
|
</template>
|
|
|