属性的绑定:v-bind
vue.js
let vm = new Vue({
el:'#app',
data:{
url:'http://***.img'
}
})
html
<div>
<img v-bind src="url"/>
<img :src="url"/> <!--简写-->
</div>
属性的绑定:v-bind
vue.js
let vm = new Vue({
el:'#app',
data:{
url:'http://***.img'
}
})
html
<div>
<img v-bind src="url"/>
<img :src="url"/> <!--简写-->
</div>
本文标题:vue 中修改属性
本文链接:https://www.haomeiwen.com/subject/megdnqtx.html
网友评论