摘要:
要用指令升级nodejs到新版本要先安装n模块 window用不了n模块 可以用 nvm-windows : https://github.com/coreybutler/nvm-windows npm install -g n 之后用n模版来管理nodejs版本 n stable 该指令代表使用n 阅读全文
摘要:
width = device-width:标识宽度是设备屏幕的宽度 initial-scale = 1.0 :标识初始的缩放比例 minimum-scale =0.5 :表示最小的缩放比例 maximum-scale = 2.0 :表示最大的缩放比例 user-scalable = yes :表示用 阅读全文
摘要:
“Controller View”模式: 组件嵌套中,最顶层的组件只管理State 子组件为纯组件 顶层组件分配State给子组件,作为子组件的props 子组件接受顶层组件发来的State作为自身的props 阅读全文
摘要:
# vs code .vscode # Logs *.log #npm node_modules 阅读全文
摘要:
安装cnpm: $ npm install -g cnpm --registry=https://registry.npm.taobao.org 配置nodejs的npm安装包路径: npm config set prefix "node_modules_URL" npm config set ca 阅读全文