Vue中V-bind的使用。为何标签中style="height:90px"也需要写为V-bind:style="height:90px",哪些属性需要绑定?哪些属性不需要绑定? 问题:Vue中V-bind的使用。为何标签中style="height:90px"也需要写为V-bind:style="height:90px",哪些属性需要绑定?哪些属性不需要绑定?
通过v-bind绑定属性value的数据,再通过事件改变数据,就可以实现v-model的功能,这也是v-model实现的实质
(1) // 一般绑定到样式属性上,计算属性 computed: { bgStyle() { return { 'background-image': `url(${this.bgImage})`, border: '1px solid red' } // return `background-image:url(${this.bgImage})` } } --- (2) // 这种方式不提倡,不直观 data: { activeColor: 'red...