DataRepair.vue 528 Bytes
<template>
  <a-tabs v-model:activeKey="activeKey">
    <a-tab-pane key="CustomerFlow" tab="客流数据修补">
      <CustomerFlow />
    </a-tab-pane>
    <a-tab-pane key="AccurateCustomerFlow" tab="精准客流修补">
      <AccurateCustomerFlow />
    </a-tab-pane>
  </a-tabs>
</template>
<script setup>
import { ref } from "vue";
import AccurateCustomerFlow from "./components/AccurateCustomerFlow.vue";
import CustomerFlow from "./components/CustomerFlow.vue";

const activeKey = ref("AccurateCustomerFlow");
</script>