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