methods:{ //存放事件 }dom
directives:{ //自定義指令 }this
computed:{ //計算屬性 }spa
methods:{ //存放事件 }對象
/*事件
addTodo:function (ev) { //添加任務
//向list中添加任務 格式是對象
//事件對象 13 enter this指向跟實例
if( ev.keyCode === 13 ){
this.list.push({
title:ev.target.value
});
}
} */
//事件修飾符:不須要處理dom的細節,例如:阻止冒泡,取消默認行爲,判斷按鍵
// v-on:eventName
/*
* 修飾符 .stop .prevent .capture .self .once
* 按鍵修飾符 .enter .tab .delete .esc
* .space .up .down .left .right
* .ctrl .alt .shift .meta 鍵值
* */
addTodo:function (date,ev) {
console.log(date,ev)
// this.list.push({
// title:ev.target.value
// })
this.list.push({
title:this.todo
});
this.doto = ""; //清空
},