10 lines
129 B
Vue
10 lines
129 B
Vue
|
|
<template>
|
||
|
|
<main-view />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup lang="ts">
|
||
|
|
import MainView from "./mapView.vue";
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style></style>
|