ADOU-V

导航

07 2022 档案

22个实用的前端工具
摘要:https://blog.csdn.net/qq_34703156/article/details/122863975 https://notable.app/ highlight.js 语法高亮,让你的页面更美观: https://blog.csdn.net/jingjing217/article 阅读全文

posted @ 2022-07-23 17:20 a-dou 阅读(65) 评论(0) 推荐(0)

js 设备判断
摘要:/** * 是否为mac系统(包含iphone手机) * */ var isMac = function() { return /macintosh|mac os x/i.test(navigator.userAgent); }(); /** * 是否为windows系统 * */ var isWi 阅读全文

posted @ 2022-07-22 10:14 a-dou 阅读(68) 评论(0) 推荐(0)

vscode 配置 vue 文件 html 代码一行显示
摘要:{ "workbench.iconTheme": "material-icon-theme", "files.associations": {}, "explorer.fileNesting.patterns": { "*.ts": "${capture}.js", "*.js": "${captu 阅读全文

posted @ 2022-07-22 10:11 a-dou 阅读(992) 评论(0) 推荐(1)

mac 下 nvm 安装
摘要:参考:https://github.com/nvm-sh/nvm#installing-and-updating 说明:用于解决包依赖不兼容,导致还原包报错,提示node版本过高或过低 / 当前某个包不兼容当前node,需要降低node版本或升级node版本! // 安装 nvm1、curl -o- 阅读全文

posted @ 2022-07-22 09:49 a-dou 阅读(3329) 评论(0) 推荐(1)