Vue JS 自學筆記

2022-01-22 07:39:35 字數 844 閱讀 6257

1.v-text

設定標籤的文字值(textcontent)

語法: data:

})2.v-html

設定標籤的innerhtml

data:

})3.v-on

為元素繫結事件

methods:

}})補充:

傳遞自定義引數,事件修飾符

methods:,

sayhi:function(){}

}})4.v-show

isshow:false,

age:16

})5.v-if

根據表達值的真假,切換元素的顯示和隱藏(操縱dom元素)

我是乙個p標籤

我是乙個p標籤

data:

})7.v-bind

設定元素的屬性(比如:src,title,class)

簡寫: imgsrc:"位址",

imagetitle:"programmer",

isactive:false

})8.v-for

根據資料生成列表結構

}

data:,]}

})9.v-model

獲取和設定表單元素的值(雙向資料繫結)

data:

})

vuejs 2 0 基礎筆記

基本結構 el wrap data v for name in json v for v,k in json 事件 v on click 函式 or v bind click 函式 v on click mouseout mouseover dblclick mousedown.顯示隱藏 v if ...

java thread自學筆記

執行緒有多種寫法。第一種是實現runnable介面。第二種是繼承thread類。第三種是直接寫runnable的實現方法。public class threadtest thread t new thread r t.run output foo t.start output foo try cat...

OC自學筆記

變數資料修飾 auto register extern static 預設auto int i 0 等於 auto int i 0 register高效變數 register int i 0 分配數量有限,跟系統有關,可能會降為auto extern全域性變數 extern int i 0 相同專案...