Sink/app/components/dashboard/realtime/Index.vue
ccbikai 3456e69366 feat: enhance realtime globe functionality
- Reintroduced the realtime dashboard tab in the navigation menu.
- Updated Globe component to utilize geographic coordinates for live session locations.
- Added dynamic resizing for the globe based on viewport width.
- Implemented stop rotation feature on mouse down for better user interaction.
- Cleaned up commented code and improved type definitions in event logging.
2025-05-11 21:53:23 +08:00

12 lines
328 B
Vue

<template>
<main class="space-y-6">
<div class="flex flex-col gap-6 sm:gap-2 sm:flex-row sm:justify-between">
<DashboardNav class="flex-1">
Mode & TimeRange
</DashboardNav>
<!-- add filter -->
</div>
<DashboardRealtimeGlobe />
<!-- <DashboardRealtimeLogs /> -->
</main>
</template>