新聞中心
這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
Vue.js基礎(chǔ)知識小結(jié)
數(shù)據(jù)綁定
目前創(chuàng)新互聯(lián)已為數(shù)千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬主機(jī)、網(wǎng)站改版維護(hù)、企業(yè)網(wǎng)站設(shè)計(jì)、鄂倫春網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
1.單向綁定
{{massage}}var app = new Vue({ el:"#app", data:{ message:"Hello,vue.js!" }
2.雙向綁定
var app = new Vue({ el:"#app", data:{ message:"Hello,vue.js!" }{{message}}
3.v-for列表渲染
new Vue({ el:"#app", data:{ todos:[ {text:"abcdef"}, {text:"123456"}, {text:"qwerta"} ] } })
- {{ todo.text }}
3.處理用戶輸入
new Vue({ el: "#app", data:{ message:"Hello Vue.js!" }, methods:{ reverseMessage:function() { this .message = this.message.split('').revserse().join(''); } } }){{ message }}
4.綜合
- {{ todo.text }}
以上就是本文的全部內(nèi)容,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,同時(shí)也希望多多支持創(chuàng)新互聯(lián)!
文章標(biāo)題:Vue.js基礎(chǔ)知識小結(jié)
URL網(wǎng)址:http://ef60e0e.cn/article/pijedp.html