Vue3+Setup+TypeScript实现主题切换(浅色、深色、跟随系统)

news/2024/11/7 23:37:30/

使用 Vue 3 的 Composition API、 TypeScript 以及 <script setup> 语法糖,实现动态主题切换,能够在 ‘light’(明亮)、‘dark’(暗黑)和 ‘system’(系统)主题之间切换,并且使用 localStorage 做了状态缓存。代码十分精简,提供 JavaScript 和 TypeScript 版本,也可以在线体验此功能:play.vuejs.org。

基本实现

script

  • const theme = ref<ThemeType>((localStorage.getItem('theme') as ThemeType) || 'light') 使用 Vue 的 ref 函数创建一个响应式引用,保存当前选择的主题。尝试从 localStorage 获取保存的主题,如果没有则默认为 'light'
  • watch 来观察 theme 的变化,当 theme 变化时修改 html 的 class,当 theme 设置为 ‘system’ 时,会根据当前系统的主题来设置对应的 class。
  • setTheme 函数用来将用户选择的主题保存到 localStorage 并更新 theme
  • handleChange 函数为 <select> 元素的 change 事件提供处理逻辑,它会调用 setTheme 以更新并保存用户选择的新主题。

template

显示当前主题,并有一个下拉菜单让用户选择主题。

style

定义了两个 css 变量,用于设置背景颜色和文字颜色。.dark 类通过覆盖 CSS 变量,实现暗黑模式的配色方案。

完整代码

TypeScript

<script setup lang="ts">
import { ref, watch } from 'vue'type ThemeType = 'light' | 'dark' | 'system'const theme = ref<ThemeType>((localStorage.getItem('theme') as ThemeType) || 'light')watch(theme,(val) => {const root = window.document.documentElementroot.classList.remove('light', 'dark')if (theme.value === 'system') {const systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches? 'dark': 'light'root.classList.add(systemTheme)return}root.classList.add(val)},{immediate: true,}
)const setTheme = (value: ThemeType) => {localStorage.setItem('theme', value)theme.value = value
}const handleChange = (event: Event & {target: HTMLSelectElement}
) => {const value = event.target.value as ThemeTypesetTheme(value)
}
</script><template><div>{{ theme }}<select v-model="theme" @change="handleChange"><option value="light">Light</option><option value="dark">Dark</option><option value="system">System</option></select></div>
</template><style>
:root {--background: #ffffff;--text: #09090b;
}.dark {--background: #09090b;--text: #f9f9f9;
}html,
body,
#app {height: 100%;
}body {background-color: var(--background);color: var(--text);
}
</style>

JavaScript

<script setup>
import { ref, watch } from 'vue'const theme = ref((localStorage.getItem('theme')) || 'light')watch(theme,(val) => {const root = window.document.documentElementroot.classList.remove('light', 'dark')if (theme.value === 'system') {const systemTheme = window.matchMedia('(prefers-color-scheme: dark)').matches? 'dark': 'light'root.classList.add(systemTheme)return}root.classList.add(val)},{immediate: true,}
)const setTheme = (value) => {localStorage.setItem('theme', value)theme.value = value
}const handleChange = (event) => {const value = event.target.valuesetTheme(value)
}
</script><template><div>{{ theme }}<select v-model="theme" @change="handleChange"><option value="light">Light</option><option value="dark">Dark</option><option value="system">System</option></select></div>
</template><style>
:root {--background: #ffffff;--text: #09090b;
}.dark {--background: #09090b;--text: #f9f9f9;
}html,
body,
#app {height: 100%;
}body {background-color: var(--background);color: var(--text);
}
</style>

http://www.ppmy.cn/news/1272242.html

相关文章

【JavaWeb】往浏览器打印一个hello world

上集:建一个web项目 第一步&#xff1a;建好Servlet类的文件 右键src&#xff0c;建一个class 就行 第二步&#xff1a;编代码 可以直接复制粘贴 用来测试的类 import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; //↓是注解&#xff0…

【产品经理】产品增效项目落地,项目反哺产品成长

产品和项目是相辅相成的关系&#xff0c;产品的规范、成熟&#xff0c;为项目的快速落地提供支撑&#xff0c;项目的落地反哺产品&#xff0c;促进产品的成长成熟。 软件工程的初期是&#xff0c;我们需要什么&#xff0c;就立项项目&#xff0c;通过项目实现需要。 随着项目的…

pytest之allure测试报告03:allure动态自定义报告

1、测试用例模块中引入allure&#xff1a;import allure 2、yaml文件中定义添加title、story的值&#xff1a; 3、测试用例中读取调用。eg:allure.dynamic.title() 4、运行报告查看&#xff1a;成功动态展示yaml文件中配置的story、title

rpc和http的区别,使⽤场景

rpc和http的区别&#xff0c;使⽤场景 区别如下&#xff1a;传输协议传输效率性能消耗负载均衡性能表现使用场景&#xff1a; 区别如下&#xff1a; 传输协议 RPC&#xff1a;可以基于TCP协议&#xff0c;也可以基于HTTP协议HTTP&#xff1a;基于HTTP协议 传输效率 RPC&…

华为、新华三、锐捷常用命令总结

华为、新华三、锐捷常用命令总结 一、华为交换机基础配置命令二、H3C交换机的基本配置三、锐捷交换机基础命令配置 一、华为交换机基础配置命令 1、创建vlan&#xff1a; <Quidway> //用户视图&#xff0c;也就是在Quidway模式下运行命令。 <Quidway>system-view…

算法工程师-机器学习面试题总结(7)

目录 1.简述k-means建模过程&#xff1f; 2.k-means损失函数是如何定义&#xff1f; 3.如何选择初始类族的中心点&#xff1f; 4.如何提升k-means效率&#xff1f; 5.常用的距离衡量方法有哪些&#xff1f;各有什么优缺点&#xff1f; 6.k-means对异常值是否敏感&#xf…

基于Hadoop的铁路货运大数据平台设计与应用

完整下载&#xff1a;基于Hadoop的铁路货运大数据平台设计与应用 基于Hadoop的铁路货运大数据平台设计与应用 Design and Application of Railway Freight Big Data Platform based on Hadoop 目录 目录 2 摘要 3 关键词 4 第一章 绪论 4 1.1 研究背景 4 1.2 研究目的与意义 5 …

flume:Ncat: Connection refused.

一&#xff1a;nc -lk 44444 和 nc localhost 44444区别 nc -lk 44444 和 nc localhost 44444 是使用 nc 命令进行网络通信时的两种不同方式。 1. nc -lk 44444&#xff1a; - 这个命令表示在本地监听指定端口&#xff08;44444&#xff09;并接受传入的连接。 - -l 选项…