问答详情
源自:4-2 使用vue-cli开发TodoList

vue添加上双向数据绑定就报错

<template>

  <div>

    <div> 

       <input v-model="inputValue"/>/*这一填上v-model就报错https://img3.mukewang.com/5b5db06d0001c8f705100561.jpg*/

       <button @click="handleclick">提交</button>

    </div>


    <ul>

<todo-item  v-for="(item,index) of list"  :key="index" ></todo-item>

    </ul>


  </div>

</template>


<script>

import todoitem from './components/todoitem'


export default {


    components:{

  'todo-item':todoitem

},

   date : function() {

    return{

          inputValue:'',

          list:[]

          }

  },

   methods:{

   handleclick(){

   this.list.push(this.inputValue)

            this.inputValue=""

   }

   }

}

 


</script>


<style>


</style>


提问者:生物怪兽 2018-07-29 20:18

个回答

  • qq_若鸿鹄_0
    2018-07-31 14:53:28
    已采纳

    你的data写成了date,