HTML
<el-button class="formButton" @click="switchForm()" v-bind:style="{ color: activeColor,background: activeBackground }">表格</el-button>
data
activeColor: '#000000',
activeBackground: '#ffffff',
JS
switchForm() {
this.activeColor = '#FFFFFF'
this.activeBackground = '#2a76cd'
this.chartColor = '#000000'
this.chartBackground = '#FFFFFF'
},