vue-v-bind绑定属性到元素

// HTML通过v-bind给div绑定颜色
这里是测试的内容
//通过v-bind给div绑定样式,指向JS中 data下的my_class ,也就是给改div指定了main的样式
这里是测试的内容
//JS 定义myclass对应为main > export default { name: 'demo', data () { return { rand_color: 'blue', myclass: 'main' } }, methods:{ changeColor: function () { let color= Math.ceil(Math.random() * (999999 - 100000) ) + 100000; // eslint-disable-next-line this.rand_color = '#' +color console.log(color) } } } //CSS > .main{ color: red; }

    推荐阅读