vue3主题切换按钮与功能实现

vue3主题切换按钮与功能实现

码农世界 2024-05-28 前端 85 次浏览 0个评论

代码:




pinia中:

import { defineStore } from "pinia";
import { ref } from "vue";
export const useCounterStore = defineStore("counter", () => {
  const theme = ref(localStorage.getItem("theme") || "dark");
  return {theme};
});

转载请注明来自码农世界,本文标题:《vue3主题切换按钮与功能实现》

百度分享代码,如果开启HTTPS请参考李洋个人博客
每一天,每一秒,你所做的决定都会改变你的人生!

发表评论

快捷回复:

评论列表 (暂无评论,85人围观)参与讨论

还没有评论,来说两句吧...

Top