1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| <!--
| * @Author: shuishen 1109946754@qq.com
| * @Date: 2022-10-21 14:09:12
| * @LastEditors: shuishen 1109946754@qq.com
| * @LastEditTime: 2022-11-02 10:55:08
| * @FilePath: \sd-jg-school-web\src\mobileLayout\index.vue
| * @Description:
| *
| * Copyright (c) 2022 by shuishen 1109946754@qq.com, All Rights Reserved.
| -->
| <template>
| <div id="mobileMaps">
| <mobilemapBox ref="mobilemapBoxFrom" />
| </div>
| </template>
|
| <script>
| export default {
| created () {
|
| }
| }
| </script>
|
| <style>
| #mobileMaps {
| width: 100%;
| height: 100%;
| overflow: hidden;
| }
| </style>
|
|