<template>
<button type="primary" @click="click" icon="retweet" style="margin-left: 8px">{{message}}</button>
<div v-show="isShowChart">图表内容</div>
<div v-show="isShowTable">表格内容</div>
</template>

export default {
    name: "DrivingStatistics",
    data() {
      return {
        isShowChart: true,
        isShowTable: false,
        message: "切换表格",
      }
    }
    methods: {
      //切换按钮
      click() {
        if (this.isShowChart) {
          this.message = "切换图表";
        } else {
          this.message = "切换表格";
        }
        this.isShowChart = !this.isShowChart;
        this.isShowTable = !this.isShowTable;
      }
    }
}

效果:默认显示图表

效果:切换显示表格

Logo

前往低代码交流专区

更多推荐