因为v-bind使用很频繁,它还有一种简写方式,就是 {{res.name}} 1. 效果一样。 v-bind不止可以绑定变量,也可以绑定对象。 .active { color:#f00; } v-bind的用法 aaaabbbb var app = new Vue({ el:'#app', data:{ isActive:true, Color:'green', fontSize:'50' } }); 1. 2. 3....