站长资讯网
最全最丰富的资讯网站

vue.js怎么改变样式

vue.js改变样式的方法:首先给元素定义ref属性;然后通过js方法修改元素的样式,代码为【'background-color:#1F2429;width:66px'】;最后修改单一样式时可直接使用样式名称。

vue.js怎么改变样式

【相关文章推荐:vue.js】

  • 该方法适用于所有品牌电脑

vue.js改变样式的方法:

1、给元素定义ref属性

 <el-button ref="btnClick" class="list_button" " @click="openClose"></el-button>

2、通过js 方法修改元素的样式 修改较多样式时可使用cssText

function openClose() {         this.isCollapse = !this.isCollapse           if (this.isCollapse) {             this.$refs.btnClick.$el.style.cssText =                 'background-color:#1F2429;width:66px';                     } else {             this.$refs.btnClick.$el.style.cssText =                 'background-color:#1F2429;width:140px';         }     }

3、修改单一样式时可直接使用样式名称

function openClose() {         this.isCollapse = !this.isCollapse           if (this.isCollapse) {             this.$refs.btnClick.$el.style.color = 'red';                     } else {             this.$refs.btnClick.$el.style.color = 'blue';         }     }

相关学习推荐:javascript学习教程

赞(0)
分享到: 更多 (0)
网站地图   沪ICP备18035694号-2    沪公网安备31011702889846号