Element ui:https://element.eleme.io/#/zh-CN/component/drawer
Vue:https://cn.vuejs.org/v2/guide/typescript.html
Npm:
1 npm install --legacy-peer-deps 2 各位肯定安装过很多的全局npm包。就是 npm install xxx -g,这样的,时间一久,完全记不得自己装过那些东西,有时你想看一下或者删除一些无用的包,下面就记录一下该操作。 3 1. 查看 4 $ npm list -g --depth 0 // 若需要权限 请加上 sudo 命令 5 2. 更新 6 $ npm update -g xxx 7 3. 删除 8 $ npm uninstall -g xxx 9 10 npm config ls -l 11 npm config list 12 13 1, 修改 下载仓库为淘宝镜像 14 15 npm config set registry http://registry.npm.taobao.org/ 16 17 2, 如果要发布自己的镜像需要修改回来 18 19 npm config set registry https://registry.npmjs.org/ 20 21 3, 安装cnpm 22 23 npm install -g cnpm --registry=https://registry.npm.taobao.org 24 25 npm ls命令可以查看安装过的模块,这个命令使用的时候要注意是否为全局和注意层数。 26 查看当前项目的依赖模块如下: 27 npm ls --depth 0 28 查看全局依赖模块命令如下: 29 npm ls -g --depth 0 30 31 npm cache clean --force 1 1
[1,2,3].map(a=>console.log(a))
[1,2,3].map(function(a){console.log(a)})