From 8b1c775178dc345293875e9a1fb5f28405645845 Mon Sep 17 00:00:00 2001 From: tnt group Date: Sat, 3 Sep 2022 16:44:35 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20eslint-plugin-vue=20v8.0+=20?= =?UTF-8?q?=E6=A8=A1=E5=BC=8F=E4=B8=8B=E7=BB=9F=E4=B8=80=E5=A4=84=E7=90=86?= =?UTF-8?q?=20lint=20=E6=8A=A5=20defineProps=20=E6=9C=AA=E5=AE=9A=E4=B9=89?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 2b737770..d27e761e 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -9,16 +9,17 @@ module.exports = { sourceType: 'module', ecmaFeatures: { jsx: true, - tsx: true, - }, + tsx: true + } }, env: { node: true, + // The Follow config only works with eslint-plugin-vue v8.0.0+ + 'vue/setup-compiler-macros': true }, - extends: ["plugin:vue/vue3-essential", "eslint:recommended"], + extends: ['plugin:vue/vue3-essential', 'eslint:recommended'], rules: { - "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", - "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", - }, -}; - + 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', + 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off' + } +} From 101a4ea27c9441d624145d4d9e97c706c4b20b73 Mon Sep 17 00:00:00 2001 From: tnt group Date: Sat, 3 Sep 2022 16:45:46 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20computed=20?= =?UTF-8?q?=E5=AE=9A=E4=B9=89=20isFull=20=E7=9A=84=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E4=BD=BF=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Tips/MacOsControlBtn/index.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/Tips/MacOsControlBtn/index.vue b/src/components/Tips/MacOsControlBtn/index.vue index 980454d0..fbfd2c18 100644 --- a/src/components/Tips/MacOsControlBtn/index.vue +++ b/src/components/Tips/MacOsControlBtn/index.vue @@ -37,7 +37,9 @@ const props = defineProps({ hidden: { request: false, type: Array, - default: [] + default() { + return [] + } }, // 使用全屏功能 narrow: { @@ -76,7 +78,7 @@ const btnList: { icon: RemoveIcon }, { - title: isFull ? '缩小' : '放大', + title: isFull.value ? '缩小' : '放大', key: props.narrow ? 'fullResize' : 'resize', icon: ResizeIcon }