17 lines
201 B
Vue
17 lines
201 B
Vue
<script setup>
|
|
const themes = [
|
|
{
|
|
name: 'light',
|
|
icon: 'bx-sun',
|
|
},
|
|
{
|
|
name: 'dark',
|
|
icon: 'bx-moon',
|
|
},
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<ThemeSwitcher :themes="themes" />
|
|
</template>
|