html
<el-button :type="0 == quaflat ? 'primary':''" @click="getlisttable(0)">夏天</el-button>
<el-button :type="1 == quaflat ? 'primary':''" @click="getlisttable(1)">秋天</el-button>
js
getlisttable(flat) {
if (flat == 0) {
this.quaflat = 0;
} else {
this.quaflat = 1;
}
},
完整代码
<template>
<div>
<el-button :type="0 == quaflat ? 'primary':''" @click="getlisttable(0)">夏天</el-button>
<el-button :type="1 == quaflat ? 'primary':''" @click="getlisttable(1)">秋天</el-button>
</div>
</template>
<script>
export default {
data() {
return {
quaflat: "0",
};
},
methods: {
getlisttable(flat) {
this.quaflat=flat
},
}
};
</script>
<style lang="scss" scoped>
</style>