http://www.reibang.com/p/fd2078893542
1蹭秋、通過(guò)NPM安裝vue-amap模塊:
npm install --save vue-amap
2蛛芥、在main.js中引用vue-amap:
importVueAMapfrom'vue-amap';Vue.use(VueAMap);// 初始化vue-amapVueAMap.initAMapApiLoader({key:'申請(qǐng)的高德地圖Key'});
3、在vue組件中使用:
<template><div><el-amap:center='center':zoom='zoom'><el-amap-marker:position="center":label="label"></el-amap-marker></el-amap></div></template><script>data() {? return {? ? center: [116.397428, 39.90923],? ? zoom: 15,? ? label:{? ? ? content: '自定義標(biāo)題',? ? ? offset:[10,12]? ? }? }}</script>
作者:u5f20u5929u8000
鏈接:http://www.reibang.com/p/fd2078893542