上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页

2022年6月24日

摘要: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins></build>要 阅读全文
posted @ 2022-06-24 10:39 小吴编 阅读(30) 评论(0) 推荐(0) 编辑

2022年6月22日

摘要: this.$refs.disType.$el.click() 阅读全文
posted @ 2022-06-22 18:24 小吴编 阅读(293) 评论(0) 推荐(0) 编辑
摘要: mounted() { let pages = getCurrentPages(); //获取路由参数 let curPage = pages[pages.length - 1];let 变量名 = curPage.options["参数名"] }, 阅读全文
posted @ 2022-06-22 18:23 小吴编 阅读(390) 评论(0) 推荐(0) 编辑

2022年6月20日

摘要: 一、div内显示一行,超出部分用省略号显示 white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 二、div内显示两行或三行,超出部分用省略号显示 overflow: hidden; text-overflow: ellips 阅读全文
posted @ 2022-06-20 10:05 小吴编 阅读(915) 评论(0) 推荐(0) 编辑

2022年6月15日

摘要: https://blog.csdn.net/qq_39503511/article/details/110918668 1.窗体中的点击事件必须为onclick 2.在methods中直接定义事件,发现无法触发,多方翻阅后发现以下处理方法可行,直接放在钩子函数(created)里去触发,成功触发事件 阅读全文
posted @ 2022-06-15 18:42 小吴编 阅读(815) 评论(0) 推荐(0) 编辑
摘要: 凡是页面初始化时请求数据,统一放到mounted里头; 此外,onLoad函数只会执行一次,mounted是每次进入页面都会执行一次; 阅读全文
posted @ 2022-06-15 17:16 小吴编 阅读(5427) 评论(0) 推荐(0) 编辑

2022年6月14日

摘要: 通常来讲body标签代表整个页面,但并非是整个浏览器页面。浏览器页面里面镶嵌着body,与body还是存在边距的。body与浏览器页面存在外边距margin,甚至还有内边距padding。 body是你网页的整个页面的,但是不一定是占满整个浏览器的。一个网页就好比一个人,body就是人的身体。浏览器 阅读全文
posted @ 2022-06-14 21:54 小吴编 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 1.var: for (var i = 0; i < 10; i++) { setTimeout( function(){ console.log(i); }) } // 输出十个 10 2.let: for (let j = 0; j < 10; j++) { setTimeout( functi 阅读全文
posted @ 2022-06-14 17:01 小吴编 阅读(21) 评论(0) 推荐(0) 编辑

2022年6月8日

摘要: import Router from "./router"中的Router改成小写router的就行了 阅读全文
posted @ 2022-06-08 23:17 小吴编 阅读(590) 评论(0) 推荐(0) 编辑
摘要: overflow:hidden; //超出的文本隐藏 text-overflow:ellipsis; //溢出用省略号显示 white-space:nowrap; //溢出不换行 阅读全文
posted @ 2022-06-08 17:50 小吴编 阅读(75) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页