作用:动态为HTML标签绑定属性值,如设置href,src,style样式等。
语法:v-bind:属性名="属性值" <img v-bind:src="item.image" width="30px">
<img v-bind:src="item.image" width="30px">
简化::属性名="属性值" <img :src="item.image" width="30px">
<img :src="item.image" width="30px">
标签内不能用插值表达式