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.

41 lines
632 B

9 months ago
<template>
9 months ago
<div class="pc-container">
<NavigationBar></NavigationBar>
<LeafletMap />
9 months ago
</div>
9 months ago
</template>
<script>
9 months ago
import NavigationBar from "@/components/NavigationBar/index.vue";
import LeafletMap from "@/components/LeafletMap";
9 months ago
export default {
name: "Index",
9 months ago
components: {
NavigationBar,
LeafletMap,
9 months ago
},
9 months ago
data() {
return {
// 版本号
version: "3.8.8",
9 months ago
};
},
9 months ago
methods: {},
9 months ago
};
</script>
<style scoped lang="scss">
9 months ago
.pc-container {
height: 100%;
box-sizing: border-box;
background: url("~@/assets/images/ui/index_bg.jpg");
background-size: 100% 100%;
9 months ago
}
</style>