vue在IE11下打开页面空白问题解决

安装 babel-polyfill

安装 babel-polyfill 。 babel-polyfill可以模拟ES6使用的环境,可以使用ES6的所有新方法

npm install --save babel-polyfill

修改webpack.base.config.js

在webpack.base.config.js中

module.exports = {
  entry: {
    app: ["babel-polyfill", "./src/main.js"]
  }
};

替换原有的

module.exports = {
  entry: {
    app: './src/main.js'
  }
}

你可能感兴趣的:(vue在IE11下打开页面空白问题解决)