zhuohongkui hace 1 año
padre
commit
7ab30d4517
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. 2 2
      src/App.vue
  2. 1 1
      src/main.js

+ 2 - 2
src/App.vue

@@ -81,8 +81,8 @@ export default {
 <style lang="scss">
 @import "~@/assets/css/common.scss";
 :root {
-  --scrollTop: 0px;
-  --windowHeight: 0px;
+  --scrollTop: 0px;    // 窗口当前滚动位置
+  --windowHeight: 0px; // 窗口最大宽度
 }
 
 body {

+ 1 - 1
src/main.js

@@ -37,7 +37,7 @@ window.onkeydown =
   window.onkeyup =
   window.onkeypress =
     function (event) {
-      // 禁用 ctrl + s 与 command + s
+      // 禁用除f的ctrl事件
       if ((event.ctrlKey || event.metaKey) && event.key !== "f") {
         // 阻止默认事件
         event.preventDefault();