NavbarThemeSwitcher.vue 275 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 <script setup> const themes = [ { name: 'system', icon: 'ri-macbook-line', }, { name: 'light', icon: 'ri-sun-line', }, { name: 'dark', icon: 'ri-moon-clear-line', }, ] </script> <template> <ThemeSwitcher :themes="themes" /> </template>