feat: theme default

This commit is contained in:
Alisa | side.one 2023-05-28 02:34:40 +08:00
parent 3404262af7
commit ee75361cef

View File

@ -32,7 +32,7 @@ const changeMode = (val?: string) => {
onMounted(() => {
changeMode(theme.value === 'dark' ? 'light' : 'dark');
changeMode(theme.value === 'light' ? 'dark' : 'light');
});
</script>