1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| <template>
| <mars-pannel :visible="true" right="10" top="10">
| <div class="f-mb">
| <layer-state />
| </div>
| <div class="f-mb">
| <data-manage />
| </div>
| </mars-pannel>
| <location-to />
| </template>
|
| <script setup lang="ts">
| import DataManage from "@mars/components/mars-sample/data-manage.vue"
| import LocationTo from "@mars/components/mars-sample/location-to.vue"
| import LayerState from "@mars/components/mars-sample/layer-state.vue"
| </script>
|
|