讲师回答 / fishenal
store.js是自己创建的,我后来github上没有,是因为localStorage我用了一个库,vue-localStorage,就不需要store.js,之前的store.js据反映有一些问题
2016-12-29
讲师回答 / fishenal
怎么会存在跨域问题呢,如果你要跟后端不同域名的地址联调,你可以使用proxy代理,在node server里配置。如果是上线,web端和前端分属两个域名,也没什么必要,非要做的话,nginx之类的也都有反向代理可以设置。
2016-12-28
讲师回答 / fishenal
https://github.com/fishenal/Todos_Vuejs 代码在前面已经发了好几次了,这是经过vue2.0修改以后的,也有一些优化
2016-12-28
讲师回答 / fishenal
就按步骤一步一步来,主要都是一些基于node开发的前端工具,方便你项目开发调试的,你就想学vue也可以直接下下来引入到你的页面,使用vue的接口方法,不过这样对项目开发没什么意义
2016-12-26
讲师回答 / 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