讲师回答 / fishenal
deleteTodo (index) { // 删除指定项列表 this.todoList.splice(index, 1) } https://github.com/fishenal/Todos_Vuejs/blob/master/src/todoList.vue
2017-01-29
讲师回答 / fishenal
必备:1.node2.gitwindows可以装这个:https://desktop.github.com/ 用这里的git-shell(命令行工具)做 shell 操作,比较方便
2017-01-13
讲师回答 / fishenal
important? css里的?你的webpack配置看着没什么问题,如果你指的是import,主要是babel-loader处理的,看下这个依赖加载有没有问题,另外把报错信息贴一下
2017-01-13
讲师回答 / fishenal
我有点没看懂你的项目,只有index.html 很可能是因为你依然用的vue-cli的那套模版,那套模版入口就是index.html,调用main.js,其他的文件不会去处理。如果你想做多个页面可以使用vue-router做单页面应用,参考这里:https://github.com/fishenal/Vuejs-SalePlatform 如果你不想做单页面应用,每个页面都有自己的vue实例化对象,你可以参考这套模版:https://github.com/Plortinus/vue-multiple-pag...
2017-01-11
讲师回答 / fishenal
这是你在初始化项目的时候,vue init ... 的时候选择了使用eslint。eslint是代码格式检查工具,这边的报错是类似少空格,缺换行之类的。
2017-01-10
讲师回答 / fishenal
视频里用的是vue1.0,现在是vue2.0新版的项目参考这个,我更新过https://github.com/fishenal/Todos_Vuejs
2017-01-09