2022年6月16日
摘要: <el-table style="width: 100%; height:calc(100% - 10px);"> </el-table> height:calc(100% - 10px); calc(100vh - 10px) 表示整个浏览器窗口高度减去10px的大小calc(100vw - 10 阅读全文
posted @ 2022-06-16 16:57 法老的微笑 阅读(89) 评论(0) 推荐(0)
摘要: 代码中如果少写break,case下的代码都会被执行 let key = 1; switch (key) { case 1: console.log("1" + key) // break; case 2: console.log("2" + key) break; default: break; 阅读全文
posted @ 2022-06-16 13:45 法老的微笑 阅读(39) 评论(0) 推荐(0)