Map.vue 467 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="amap-wrapper">
  3. <el-amap class="amap-box" :vid="'amap-vue'"></el-amap>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data () {
  9. return {
  10. msg: 'vue-amap向你问好!'
  11. }
  12. }
  13. }
  14. // 更多配置 参阅https://elemefe.github.io/vue-amap/#/zh-cn/coverings/marker
  15. </script>
  16. <style scoped>
  17. .amap-wrapper {
  18. width: 500px;
  19. height: 500px;
  20. }
  21. </style>