Files
band-management/resources/vuexy-admin-v10.11.1/nuxt-version/javascript-version/full-version/layouts/components/NavbarThemeSwitcher.vue

21 lines
294 B
Vue

<script setup>
const themes = [
{
name: 'light',
icon: 'tabler-sun-high',
},
{
name: 'dark',
icon: 'tabler-moon-stars',
},
{
name: 'system',
icon: 'tabler-device-desktop-analytics',
},
]
</script>
<template>
<ThemeSwitcher :themes="themes" />
</template>