vue 项目 在ie浏览器下页面显示为空

Posted Undefined_hui

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 项目 在ie浏览器下页面显示为空相关的知识,希望对你有一定的参考价值。

npm install --save babel-polyfill

在main.js中添加:

import es6Promise from "babel-polyfill";
es6Promise .polyfill();

在webpack.base.conf.js中修改

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

但是还是发现报错:

polyfill-eventsource added missing EventSource to window

这时候再下载event-source-polyfill模块

npm install event-source-polyfill --save-dev

并将webpack.base.conf.js修改为:

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

https://babeljs.io/docs/usage/polyfill/

https://github.com/vuejs-templates/webpack/issues/474

以上是关于vue 项目 在ie浏览器下页面显示为空的主要内容,如果未能解决你的问题,请参考以下文章

VUE项目在IE浏览器,页面折叠

vue开发的网页打包后在IE浏览器下显示promise未定义怎么解决?

Vue 2.0 项目在IE下显示空白

Vue 2.0 项目在IE下显示空白

vue项目兼容IE浏览器

Vue---hips--页面显示空白的问题