vue3中不需使用vue.config.js进行配置
也并不需要使用import AMap from 'AMap'导入
index.html页面中引入API
index.html文件中引入api给组件绑定id
<template>
<div id="container"></div>
</template>
初始化函数
methods: {
init() {
var map = new AMap.Map("container");
window.map = map;
}
}
调用初始化函数
mounted() {
this.init();
},
网友评论