上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 39 下一页
摘要: created() { var that=this axios.get('http://jsonplaceholder.typicode.com/todos') .then(function (res) { // handle success // console.log(res); that.to 阅读全文
posted @ 2019-11-02 13:09 武卡卡 阅读(621) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <form @submit.prevent="addTodo"> <input v-model="title" type="text" name="title" placeholder="请添加代办事项..."> <input type="submit" value 阅读全文
posted @ 2019-11-02 08:10 武卡卡 阅读(3307) 评论(0) 推荐(1) 编辑
摘要: 1,在 methods 中 <template> <div> <form @submit="addTodo"> <input v-model="title" type="text" name="title"> <input type="submit" value="添加" class="btn"> 阅读全文
posted @ 2019-11-02 07:49 武卡卡 阅读(2233) 评论(0) 推荐(0) 编辑
摘要: <script> export default { name:'header' // 不要使用内置或保留的HTML元素 , 改为Header或者置或保留的HTML元素之外的名称就好了 } </script> <script> export default { name:'header' // 不要使 阅读全文
posted @ 2019-11-02 07:06 武卡卡 阅读(4370) 评论(0) 推荐(2) 编辑
摘要: 通过应用生成器工具 express-generator 可以快速创建一个应用的骨架。 express-generator 包含了 express 命令行工具。通过如下命令即可安装: -h 参数可以列出所有可用的命令行参数: 例如,如下命令创建了一个名称为 myapp 的 Express 应用。此应用 阅读全文
posted @ 2019-11-01 20:11 武卡卡 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 1,子子组件 TodoItem.vue <template> <div class="todo-item" :class="{'is-complete':todo.completed}"> <p> <input type="checkbox" @change="markComplete"> {{to 阅读全文
posted @ 2019-11-01 13:52 武卡卡 阅读(527) 评论(0) 推荐(0) 编辑
摘要: <template> <div id="app"> <div v-for="todo in todos" :key="todo.id"> <div>{{todo}} <button @click="handleDelete(todo.id)">删除</button></div> </div> </d 阅读全文
posted @ 2019-11-01 13:20 武卡卡 阅读(873) 评论(0) 推荐(0) 编辑
摘要: 1,子组件 TodoItem.vue : <template> <div class="todo-item" :class="{'is-complete':todo.completed}"> <p> <input type="checkbox" @change="markComplete"> {{t 阅读全文
posted @ 2019-10-31 14:04 武卡卡 阅读(2216) 评论(0) 推荐(0) 编辑
摘要: <template> <div class="todo-item" :class="{'is-complete':todo.completed}"> <p> <input type="checkbox" @change="markComplete"> {{todo.title}} </p> </di 阅读全文
posted @ 2019-10-31 13:45 武卡卡 阅读(197) 评论(0) 推荐(0) 编辑
摘要: <template> <div> <div v-for="todo in a" :key="todo.id"> {{todo}} </div> </div> </template> <script> export default { name:'todos', data(){ return{ a:t 阅读全文
posted @ 2019-10-31 13:04 武卡卡 阅读(5318) 评论(0) 推荐(1) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 39 下一页