Newer
Older
BigScreenDatav / src / views / screen / mapView.vue
StephanieGitHub on 13 Jun 2022 501 bytes MOD: 页面更新
<!--
 * @Description: 珠海三溪小镇驾驶舱首页
 * @Author: 王晓颖
 * @Date: 2021-07-13 15:18:56
 -->
<template>
  <div class="container">
      <map-view/>
  </div>
</template>

<script>
  import MapView from "./mainComponents/mapView"
  export default {
    name: "mainDashboard",
    components: {MapView},
    data(){
      return {
        loading: false
      }
    }
  }
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
.container{
  width:100%;
  height:100%;
}
</style>