关于vue学习中的一些

1、Jinkey大神的新手入门攻略

2、小凡vuejs2的视频地址

3、网友翻译的vuejs2官方中文文档

部分报错处理

1、错误一

vue.js?b6db:2611[Vue warn]: Unknown custom element: <router-link> - did you register the component correctly? For recursive components, make sure to provide the "name" option. 
found in component <wrapper> at e:filename
vue.js?b6db:2611[Vue warn]: Unknown custom element: <router-view> - did you register the component correctly? For recursive components, make sure to provide the "name" option. 
(found in component <wrapper> at e:filename)

这两个错误时有时没有的,一直不知道是为什么会出现这个错误,后来在 segmentfault  才知道是没有注册插件

//注册插件
Vue.use(VueRouter)

2、常见错误之vue-router路由设置顺序

  *号一般用来匹配设置404页面,在遍历的时候如果放在其他页面前,就会发现*后面的页面怎么点击都只显示*号页面的内容...