Skip to content
Snippets Groups Projects
Commit 30df49af authored by Alexander Kaschta's avatar Alexander Kaschta :owl:
Browse files

UPD: Show selected color scheme

parent e5c8aaeb
No related branches found
No related tags found
No related merge requests found
Pipeline #424083 passed with warnings
<script setup lang="ts">
const mode = useColorMode()
// Use builtin store of vueuse for storing the color mode
const { store } = useColorMode()
</script>
<template>
......@@ -18,15 +19,17 @@ const mode = useColorMode()
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end">
<DropdownMenuItem @click="mode = 'light'">
Light
</DropdownMenuItem>
<DropdownMenuItem @click="mode = 'dark'">
Dark
</DropdownMenuItem>
<DropdownMenuItem @click="mode = 'auto'">
System
</DropdownMenuItem>
<DropdownMenuRadioGroup v-model="store">
<DropdownMenuRadioItem value="light">
Light
</DropdownMenuRadioItem>
<DropdownMenuRadioItem value="dark">
Dark
</DropdownMenuRadioItem>
<DropdownMenuRadioItem value="auto">
System
</DropdownMenuRadioItem>
</DropdownMenuRadioGroup>
</DropdownMenuContent>
</DropdownMenu>
</template>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment