You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
593 B
35 lines
593 B
3 years ago
|
<template>
|
||
|
<div id="demo-app" class="demo-app">
|
||
|
<router-view />
|
||
|
<!-- <div class="map-wrapper">
|
||
|
<GMap/>
|
||
|
</div> -->
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { computed, defineComponent, ref } from 'vue'
|
||
|
import { useMyStore } from './store'
|
||
|
import GMap from '/@/components/GMap.vue'
|
||
|
|
||
|
export default defineComponent({
|
||
|
name: 'App',
|
||
|
components: { GMap },
|
||
|
|
||
|
setup () {
|
||
|
const store = useMyStore()
|
||
|
return {}
|
||
|
}
|
||
|
})
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.demo-app {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
.map-wrapper {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|
||
|
</style>
|