vue-baidu-map在ie下不显示的问题

已经安装babel-polyfill,使用vue-baidu-map在IE下还是空白,地图不出现,主要是因为 babel 默认不会编译 node_modules中的东西的,ie不识别,需要手动添加一下,才会编译

在webpack.base.conf.js,这个文件中添加

{

      test: /\.js$/,

      loader: 'babel-loader',

      include: [resolve('src'), resolve('test'), resolve('static'), resolve('node_modules/webpack-dev-server/client'), resolve('node_modules/vue-baidu-map/components')]

    },

代码如图

重启项目,地图正常显示了

你可能感兴趣的:(vue-baidu-map在ie下不显示的问题)