vue写法改变css的样式

用vue的数据驱动视图的写法来改变css的样式,而不是通过demo的方式来改变

html:

 
     
能耗热力图
能耗热力图

js:

methods: {
    energy(num) {
      this.$store.state.threeD.energycla = num;//这里通过控制传过来的num来操作css所对应的布尔值
    },
    property(num) {
      this.$store.state.threeD.energycla = num;
    }
},

 

你可能感兴趣的:(Vue)