riku
2023-07-11 47ab26baa9181304ef353768bf0d91f72ce769a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<template>
  <BaseMap></BaseMap>
  <div class="overlay-container">
    <!-- <router-view> -->
    <!-- <GridLayout></GridLayout> -->
    <ClueLayout></ClueLayout>
    <!-- </router-view> -->
  </div>
</template>
 
<script setup>
import GridLayout from '@/views/overlay-grid/GridLayout.vue';
import ClueLayout from '@/views/overlay-clue/ClueLayout.vue';
</script>
 
<style scoped>
.overlay-container {
  background: transparent;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 4px;
  pointer-events: none;
}
</style>