Hello!

今天拉屎顺畅吗

vscode设置vue结构的初始代码片段

{ "Print to console": { "prefix": "vue", "body": [ "<template>", " <div>", " ", " </div>", "<
阅读更多 >

nvm命令

nvm install latest 安装最新版本node.js nvm use 版本号 使用某一具体版本,例如 :nvm use 14.3.0 nvm list 列出当前已安装的所有版本 nvm ls 列出当前已安装的所有版本 nvm uninstall
阅读更多 >

vscode搜索高亮个性化配置

"workbench.colorCustomizations": { "editor.selectionHighlightBorder": "#0a00c1cb", // 高亮边框颜色 "editor.selectionBackground": "#f0d800df", // 选中文
阅读更多 >

npm换源淘宝镜像

单次使用:npm install --registry=http://registry.npmmirror.com 永久更换:npm config set registry http://registry.npmmirror.com 恢复原样:npm config set registry http
阅读更多 >