从git地址上下载到项目文件到本地
在本地执行 npm install
发现报错,删除重建,依旧报错。
同事建议采用国内淘宝镜像来处理,问题迎刃而解:
淘宝镜像地址:https://npm.taobao.org
新镜像执行的指令:npm install -g cnpm --registry=https://registry.npm.taobao.org
上面只是改了下载源头,要安装依赖,执行 cnpm install
安装完成后,执行npm run dev 则可以本地查看
localhost:8080 本地打开界面
可以查看h5的展示效果。
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report
上面的run build 就是产生一个dist生产包
而查看vue.js源码的源码的方法,就是将文件拖进subText中即可。