index.vue 353 B

123456789101112131415
  1. <template>
  2. <div id="dashboard-container">
  3. <div class="dashboard-container">
  4. <HeaderSection />
  5. <div class="dashboard-content">
  6. <globalMap />
  7. </div>
  8. <FooterSection style="position: absolute; bottom: 0; left: 0" />
  9. </div>
  10. </div>
  11. </template>
  12. <script lang="ts" setup></script>
  13. <style lang="scss" scoped></style>