25 lines
287 B
25 lines
287 B
7 months ago
|
|
||
|
<template>
|
||
|
<div>
|
||
|
地图扎点
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: '',
|
||
|
components: {},
|
||
|
data () {
|
||
|
return {
|
||
|
}
|
||
|
},
|
||
|
created () { },
|
||
|
mounted () { },
|
||
|
methods: { },
|
||
|
computed: {}
|
||
|
}
|
||
|
</script>
|
||
|
<style scoped lang='scss'>
|
||
|
|
||
|
</style>
|