引入OpenLayers时报错
JavaScript模块解析失败
在构建工具中配置 transpileDependencies 参数,因为 ol 依赖库基于一个目标环境不支持的 ES 版本撰写,将该依赖添加进 vue.config.js 中的 transpileDependencies 选项中
// including the package "color-parse" as well in "transpileDependencies"
// vue.config.js
module.exports = {
transpileDependencies: [
"ol",
"color-parse"
]
}