当前位置: 代码迷 >> 综合 >> ie vue报Unhandled promise rejection ReferenceError
  详细解决方案

ie vue报Unhandled promise rejection ReferenceError

热度:29   发布时间:2023-12-17 14:46:01.0

1、安装 babel-polyfill

cnpm  i babel-polyfill --save

2、main.js首行新增

import '@babel/polyfill';

3、babel.config.js

module.exports = {
    presets: [['@vue/app', {
    useBuiltIns: 'entry'}]]
}
  相关解决方案