Files
api-client/src/views/index/index.vue

20 lines
293 B
Vue
Raw Normal View History

2025-03-28 18:28:06 +08:00
<template>
<div class="index-container">
2026-02-20 08:04:46 +08:00
<tracking-charts />
2025-03-28 18:28:06 +08:00
</div>
</template>
<script>
2026-02-20 08:04:46 +08:00
import TrackingCharts from './components/TrackingCharts'
2025-03-28 18:28:06 +08:00
export default {
name: 'Index',
components: {
2026-02-20 08:04:46 +08:00
TrackingCharts,
2025-03-28 18:28:06 +08:00
},
data() {
2026-02-20 08:04:46 +08:00
return {}
2025-03-28 18:28:06 +08:00
},
}
</script>