index.vue 310 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="">
  3. <MapView></MapView>
  4. </view>
  5. </template>
  6. <script>
  7. import MapView from "./MapView.vue";
  8. export default {
  9. name: "map-view",
  10. components: {
  11. MapView
  12. },
  13. data() {
  14. return {
  15. }
  16. },
  17. mounted() {},
  18. unmounted() {},
  19. methods: {},
  20. };
  21. </script>
  22. <style scoped>
  23. </style>