<!-- * @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>