上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: { "Print to console": { "prefix": "vue2", "body": [ "<template>", " <div>\n", " </div>", "</template>\n", "<script>", "export default {", " name:'',&quo 阅读全文
posted @ 2022-08-24 13:29 lzhflzjx 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1,nvm nvm list 是查找本电脑上所有的node版本 - nvm list 查看已经安装的版本 - nvm list installed 查看已经安装的版本 - nvm list available 查看网络可以安装的版本 2,nvm install 安装最新版本nvm 3,nvm use 阅读全文
posted @ 2022-08-24 10:25 lzhflzjx 阅读(211) 评论(0) 推荐(0) 编辑
摘要: # git config命令的–global参数,用了这个参数,表示你这台机器上所有的Git仓库都会使用这个配置,当然也可以对某个仓库指定不同的用户名和Email地址。 # 1.查看git配置信息 $ git config --list # 2.查看git用户名、密码、邮箱的配置 $ git con 阅读全文
posted @ 2022-08-24 10:11 lzhflzjx 阅读(424) 评论(0) 推荐(0) 编辑
摘要: git update-index --assume-unchanged C.md 注:忽略后将不再拉取和提交c.md这个文件 git update-index --no-assume-unchanged c.md #恢复跟踪 阅读全文
posted @ 2022-08-01 16:00 lzhflzjx 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 转自https://www.cnblogs.com/yanggb/p/11464821.html 在JavaScript中,除了Object之外,Array类型(数组)恐怕就是最常用的类型了。与其他语言的数组相比,JavaScript中的Array非常灵活。这种灵活性有利有弊,好处是其富有创造性,可 阅读全文
posted @ 2022-04-11 16:14 lzhflzjx 阅读(935) 评论(0) 推荐(0) 编辑
摘要: 有哪些好处 1. 参数复用 // 正常正则验证字符串 reg.test(txt) // 函数封装后 function check(reg, txt) { return reg.test(txt) } check(/\d+/g, 'test') //false check(/[a-z]+/g, 'te 阅读全文
posted @ 2022-04-02 15:05 lzhflzjx 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 作用: 1.解决Margin塌陷 2.清除浮动 实现BFC: 1.根元素(整个页面就是一个大的BFC); 2.float为 left | right; 3.overflow为 hidden | auto | scroll; 4.display为 inline-block | table-cell | 阅读全文
posted @ 2022-03-23 09:52 lzhflzjx 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 线上代码强制回滚操作,这边整理了一下 1、到线上 执行 git reset --hard xxxxxxxxxxx(更新前的一个版本)2、本地执行 和上面一样 git reset --hard xxxxxxxxxxx(更新前的一个版本)3、本地执行 git push --force4、线上再执行脚本 阅读全文
posted @ 2022-02-10 14:11 lzhflzjx 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 写项目的时候,Chrome 提醒: [Violation] Added non-passive event listener to a scroll-blocking 'mousewheel' event. Consider marking event handler as 'passive' to 阅读全文
posted @ 2022-01-06 16:59 lzhflzjx 阅读(1433) 评论(0) 推荐(0) 编辑
摘要: 一些内存泄露的情况进行了排查 全局变量 定时器 使用未销毁的全局事件和第三方库 v-if和v-show不合理使用,v-if和v-for不合理使用 使用watch 阅读全文
posted @ 2022-01-06 16:18 lzhflzjx 阅读(451) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页