W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
數(shù)據(jù)綁定使用 Mustache 語法(同時支持雙大括號、單大括號)將變量或表達式包起來,可以用于綁定文本內(nèi)容或元素屬性。
綁定文本
綁定文本使用 Mustache 語法,變量需要在data中定義。
<template>
<text>{{msg}}</text>
</template>
<script>
export default {
name: 'test',
data(){
return {
msg: 'hello'
}
}
}
</script>
大括號里面的內(nèi)容也可以為表達式時,如:
<text>{{'message: ' + this.data.msg}}</text>
綁定屬性
綁定屬性可以使用 Mustache 語法,也可以使用v-bind指令。
使用 Mustache 語法:
<text text={{msg}}></text>
使用v-bind指令:
<text v-bind:text="msg"></text>
計算屬性
數(shù)據(jù)綁定的變量也可以是計算屬性,如:
<template>
<text v-bind:text="message"></text>
</template>
<script>
export default {
name: 'test',
data(){
return {
msg: 'hello'
}
},
computed:{
message:function(){
return 'message:' + this.data.msg;
}
}
}
</script>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: