摘要: 1.查看IPv4路由表 route print -4 2.添加永久路由 route -p add 192.168.80.123 mask 255.255.255.0 192.168.80.254 阅读全文
posted @ 2022-07-27 16:37 歇歇吧 阅读(1491) 评论(0) 推荐(0) 编辑
摘要: 在升级elementui为2.15.7版本后,报以下错误,是因为没有安装sass模块,在package.json中添加sass版本为1.33.0后,运行npm i 安装即可 `98% after emitting CopyPlugin ERROR Failed to compile with 1 e 阅读全文
posted @ 2022-04-11 14:35 歇歇吧 阅读(1537) 评论(0) 推荐(0) 编辑
摘要: 1.txt文件 layer.open({ type: 1, offset: "auto", content:'<iframe src="' + txt_url +'" frameborder="0" style="width: 100%;height: 100%"></iframe>', btn: 阅读全文
posted @ 2022-02-25 16:44 歇歇吧 阅读(202) 评论(0) 推荐(0) 编辑
摘要: vue-i18n 切换中英文 ztree 树结构 vuex持久化 vuex-persistedstate json-bigint 处理大数字问题 阅读全文
posted @ 2022-02-17 09:52 歇歇吧 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 常用正则:https://www.kuangyx.cn/docs/%E6%96%87%E7%AB%A0/%E5%89%8D%E7%AB%AF/%E5%B8%B8%E7%94%A8%E6%AD%A3%E5%88%99.html 1.只包含小写字母、数字及分隔符('-'),且必须以小写字母开头, 字母或 阅读全文
posted @ 2022-02-15 18:12 歇歇吧 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 来源:https://www.cnblogs.com/ingrid/p/12766457.html 写在最前 最近在使用vue的时候,遇到一个需求,实现左右div可通过中间部分拖拽调整宽度,类似于这样 这是我最终的实现效果 还是老话,因为我不是专业的前端工程师,只是兼职写一些简单的前端,所以这个功能 阅读全文
posted @ 2022-01-26 11:17 歇歇吧 阅读(682) 评论(0) 推荐(0) 编辑
摘要: this.file_url = ["http://123", "http://1234", "http://1235"];//文件地址 // a链接版本--下载文件 for (let i = 0; i < this.file_url.length; i++) { let url = window.U 阅读全文
posted @ 2021-09-10 10:44 歇歇吧 阅读(20) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2020.cnblogs.com/blog/2221439/202108/2221439-20210812095523244-794447056.jpg) 阅读全文
posted @ 2021-08-12 09:56 歇歇吧 阅读(52) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_46146313/article/details/117707199 1.低于91版本的Chrome浏览器: Chrome中访问地址chrome://flags/ 搜索samesite 将same-site-by-default-cookie 阅读全文
posted @ 2021-08-12 09:50 歇歇吧 阅读(829) 评论(0) 推荐(0) 编辑
摘要: let num = 2; let arr = []; if (num > 0) { for (var i = 0; i < (num*2+1); i++) { let num1 = num - (0.5*i); arr.unshift(num1); } console.log(arr); } els 阅读全文
posted @ 2021-07-21 16:25 歇歇吧 阅读(45) 评论(0) 推荐(0) 编辑