美文网首页
Vue改class与css样式

Vue改class与css样式

作者: 錦魚 | 来源:发表于2018-12-25 20:31 被阅读0次
new Vue({
    el: '#demo',
    data: {
        a: 'aClass',
        isA: true,
        isB: false,
        activeColor: 'red',
        fontSize: 20
    },
    // 函数方法保存
    methods: {
        update(){
            this.a = 'bClass';
            this.isA = false;
            this.isB = true;
            this.activeColor = 'green';
            this.fontSize = 30;
        }
    }
})

相关文章

网友评论

      本文标题:Vue改class与css样式

      本文链接:https://www.haomeiwen.com/subject/mbsqlqtx.html