当前Vue项目需要做一个按钮切换的功能(点击A号button,背景色变化;点击B号button,A号回复原背景色,B变色)
=====》 =====》
实现上述功能,最基础的方法就是,动过获取对应的dom,强制改变背景色:
data() {
return {
leftPart: 【
{ name: "开发投//代码效果参考:http://www.zidongmutanji.com/bxxx/377162.html
资" },{ name: "成交均价" },
{ name: "销售面积" },
{ name: "库存监测" }
】,
changeLeftBackground: 0,
};
},
methods: {
leftChange(index) {
this.changeLeftBackground = index;
},
}
.liBackground {
background: -webkit-gradient(linear, 0 0, 0 100%, from(#303fb2), to(#2f70d4));
}