Open GUEThe opened 4 years ago
I also run across the same issue. I have tried babel-polyfill but failed. Have you solved?
我也遇到过同样的问题。求help
只有一个警告,此页上的代码禁用了反向和正向缓存。有关详细信息,请参阅
此问题是fuse.js库不兼容, 可以在vue.config.js里配置如下选项: transpileDependencies: ['fuse.js'],
vue.config.js里加transpileDependencies:["vuex-module-decorators"]
第一步: 配置.babelrc或者package.json文件 例如配置.babelrc: { "presets": [ [ "@babel/preset-env", { "useBuiltIns": "entry" } ] ] } 第二步: 引入'@babel/polyfill'; 并在main.ts 中引入 import "core-js/stable"; import "regenerator-runtime/runtime"; 应该可以解决; 具体参考了https://cli.vuejs.org/zh/guide/browser-compatibility.html#browserslist