LiveAtlas/src/App.vue

22 lines
243 B
Vue
Raw Normal View History

2020-11-20 18:43:30 +00:00
<template>
2020-11-20 21:44:02 +00:00
<Map />
<Sidebar />
2020-11-20 18:43:30 +00:00
</template>
<script>
2020-11-20 21:44:02 +00:00
import Sidebar from "@/components/Sidebar";
import Map from "@/components/Map";
2020-11-20 18:43:30 +00:00
export default {
name: 'App',
components: {
2020-11-20 21:44:02 +00:00
Map,
Sidebar,
2020-11-20 18:43:30 +00:00
}
}
</script>
<style>
2020-11-20 21:44:02 +00:00
2020-11-20 18:43:30 +00:00
</style>