码迷,mamicode.com
首页 > 其他好文 > 详细

todos Vue

时间:2018-05-31 00:27:19      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:The   UNC   func   next   pre   enter   dex   col   ++   

<div id="todo-list-example">
  <input
    v-model="newTodoText"
    v-on:keyup.enter="addNewTodo"
    placeholder="Add a todo"
  >
  <ul>
    <li
      is="todo-item"
      v-for="(todo, index) in todos"
      v-bind:key="todo.id"
      v-bind:title="todo.title"
      v-on:remove="todos.splice(index, 1)"
    ></li>
  </ul>
</div>




Vue.component(‘todo-item‘, {
  template:     <li>      {{ title }}      <button v-on:click="$emit(\‘remove\‘)">X</button>    </li>  ,
  props: [‘title‘]
})

new Vue({
  el: ‘#todo-list-example‘,
  data: {
    newTodoText: ‘‘,
    todos: [
      {
        id: 1,
        title: ‘Do the dishes‘,
      },
      {
        id: 2,
        title: ‘Take out the trash‘,
      },
      {
        id: 3,
        title: ‘Mow the lawn‘
      }
    ],
    nextTodoId: 4
  },
  methods: {
    addNewTodo: function () {
      this.todos.push({
        id: this.nextTodoId++,
        title: this.newTodoText
      })
      this.newTodoText = ‘‘
    }
  }
})

 

todos Vue

标签:The   UNC   func   next   pre   enter   dex   col   ++   

原文地址:https://www.cnblogs.com/yangguoe/p/9114021.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!