From 74f90b62b34906fc50e00c5b4801d904af1086a0 Mon Sep 17 00:00:00 2001 From: Coffee-crocodile <1147347984@qq.com> Date: Wed, 21 Jun 2023 15:07:06 +0800 Subject: [PATCH] fix(darkmode): modify to useDark --- build/plugins/mock.ts | 2 +- package.json | 10 +++++----- src/App.vue | 8 ++++---- src/main.ts | 19 ++++++++++++------- src/store/index.ts | 7 ++++--- src/store/modules/app.ts | 37 ++++++++++++++----------------------- src/store/modules/auth.ts | 4 ++-- 7 files changed, 42 insertions(+), 45 deletions(-) diff --git a/build/plugins/mock.ts b/build/plugins/mock.ts index c181842..c451dce 100644 --- a/build/plugins/mock.ts +++ b/build/plugins/mock.ts @@ -2,6 +2,6 @@ import { viteMockServe } from 'vite-plugin-mock' // https://github.com/vbenjs/vi export default viteMockServe({ mockPath: 'mock', - enable: true, + // enable: true, // watchFiles: false, }) diff --git a/package.json b/package.json index feddbe7..0cc0c7d 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,7 @@ "crypto-js": "^4.1.1", "echarts": "^5.4.2", "md-editor-v3": "^4.2.0", - "pinia": "^2.1.3", + "pinia": "^2.1.4", "pinia-plugin-persist": "^1.0.0", "qs": "^6.11.2", "vue": "^3.3.4", @@ -81,10 +81,10 @@ "commitizen": "^4.2.6", "cz-conventional-changelog": "^3.3.0", "cz-customizable": "^7.0.0", - "eslint": "^8.42.0", + "eslint": "^8.43.0", "husky": "^8.0.3", "less": "^4.1.3", - "lint-staged": "^13.1.0", + "lint-staged": "^13.2.2", "mockjs": "^1.1.0", "naive-ui": "^2.34.4", "rollup-plugin-visualizer": "^5.9.0", @@ -97,9 +97,9 @@ "vite-plugin-compression": "^0.5.1", "vite-plugin-mock": "^2.9.6", "vite-plugin-svg-icons": "^2.0.1", - "vite-plugin-vue-devtools": "^0.2.0", + "vite-plugin-vue-devtools": "^0.2.1", "vite-plugin-vue-setup-extend": "^0.4.0", - "vue-tsc": "^1.6.5" + "vue-tsc": "^1.8.1" }, "lint-staged": { "*.{js,jsx,mjs,ts,tsx,json,md,yml}": [ diff --git a/src/App.vue b/src/App.vue index 812602a..0d0be95 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,21 +1,21 @@