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
| <!--
| * @Author: shuishen 1109946754@qq.com
| * @Date: 2022-06-06 17:29:15
| * @LastEditors: shuishen 1109946754@qq.com
| * @LastEditTime: 2022-08-15 17:22:16
| * @FilePath: \draw\src\views\Home.vue
| * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
| -->
| <template>
| <leafletDraw v-wechat-title="title" />
| </template>
|
| <script>
| // @ is an alias to /src
| import leafletDraw from '@/components/leafletDraw.vue'
|
| export default {
| name: 'Home',
| data () {
| return {
| title: "地块绘制"
| }
| },
| components: {
| leafletDraw
| }
| }
| </script>
|
|