[聚合文章] vue项目问题整理

vue.js 2018-01-04 32 阅读

1.IE下报错Unhandled promise rejection ReferenceError: “Promise”未定义

解决:

  1. npm i babel-polyfill -S
  2. 在main.js中引用babel-polyfill import 'babel-polyfill'

2.上步骤后继续报错polyfill-eventsource added missing EventSource to window

解决:

  1. npm i event-source-polyfill -S
  2. 在main.js中babel-polyfill后继续引用 import 'event-source-polyfill'

注:本文内容来自互联网,旨在为开发者提供分享、交流的平台。如有涉及文章版权等事宜,请你联系站长进行处理。