demo_front/src/App.vue

28 lines
437 B
Vue
Raw Normal View History

2024-08-21 17:29:30 +08:00
<template>
2024-08-21 17:29:52 +08:00
<div id="app">
<MapContainer />
</div>
2024-08-21 17:29:30 +08:00
</template>
<script>
2024-08-21 17:29:52 +08:00
import MapContainer from './components/MapContainer.vue'
2024-08-21 17:29:30 +08:00
export default {
name: 'App',
components: {
2024-08-21 17:29:52 +08:00
MapContainer,
2024-08-21 17:29:30 +08:00
}
}
</script>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>