1234567891011121314151617181920212223242526 |
- <template>
- <view class="">
- <MapView></MapView>
- </view>
- </template>
- <script>
- import MapView from "./MapView.vue";
- export default {
- name: "map-view",
- components: {
- MapView
- },
- data() {
- return {
- }
- },
- mounted() {},
- unmounted() {},
- methods: {},
- };
- </script>
- <style scoped>
- </style>
|