前端-VUE2中的动态CSS样式

作者 : admin 本文共283个字,预计阅读时间需要1分钟 发布时间: 2023-11-30 共2人阅读

一、第一种,:style写法,分为直接赋值变量,或者使用CSS样式对象

1.赋值变量

 computed: {
    buttonStyle() {
      return {
        backgroundColor: this.clicked ? ‘green’ : ‘blue’,
        color: ‘white’,
        padding: ’10px 20px’
      };
    }
  }

2.使用CSS样式对象

111

二、第二种,使用类名绑定:class


  111

 

 

.highlight {
  background-color: yellow;
}
 
.large-text {
  font-size: 20px;
}

本站无任何商业行为
个人在线分享 » 前端-VUE2中的动态CSS样式
E-->