已采纳回答 / fishenal
截图不全,首先cnpm不要用npm来装,直接用npm alias给cnpm的库地址指到淘宝。这个:alias cnpm="npm --registry=https://registry.npm.taobao.org \--cache=$HOME/.npm/.cache/cnpm \--disturl=https://npm.taobao.org/dist \--userconfig=$HOME/.cnpmrc"然后,你的爆挫已经说明白了,const这个es6的关键词不能在非严格模式下启用,这通常是你nod...
2016-12-23
讲师回答 / fishenal
Example:Installing the 1.0 branch of the webpack-simple vue template:vue init 'webpack-simple#1.0' mynewprojectNote: The surrounding quotes are necessary on zsh shells because of the special meaning of the # character.https://github.com/vuejs/vue-cli 单独使用...
2016-12-21
讲师回答 / fishenal
依赖问题,多半是npm版本不够造成的,要求3.0 以上!cnpm的版本不一定和npm是对应的!安装cnpm的时候:用这个:alias cnpm="npm --registry=https://registry.npm.taobao.org \--cache=$HOME/.npm/.cache/cnpm \--disturl=https://npm.taobao.org/dist \--userconfig=$HOME/.cnpmrc"不要用这个:$ npm install -g cnpm --regist...
2016-12-21
已采纳回答 / fishenal
vi 或vim提示不是命令,不要用windows的cmd,github 客户端自带的git-bash。你不知道vim的话,你也不会编辑操作,所以还是老老实实用你系统里的编辑器去修改package.json吧。
2016-12-21
讲师回答 / fishenal
export导出的就是一份配置文件,代表了一个组件,new Vue才是实例化Vue根组件,一般单页面应用就一个根组件,其他的配置都是通过components传的配置对象生成的,是一个组件树
2016-12-19
最新回答 / Geoion
JSON 不是所有浏览器都支持。http://stackoverflow.com/questions/30194562/json-parse-not-working
2016-12-16