vue-typescript-admin-template icon indicating copy to clipboard operation
vue-typescript-admin-template copied to clipboard

ie11 白屏

Open GUEThe opened this issue 4 years ago • 5 comments

image

GUEThe avatar Jun 19 '20 02:06 GUEThe

I also run across the same issue. I have tried babel-polyfill but failed. Have you solved?

herbert-hbt avatar Jun 20 '20 10:06 herbert-hbt

我也遇到过同样的问题。求help

只有一个警告,此页上的代码禁用了反向和正向缓存。有关详细信息,请参阅

shf1325913748 avatar Jul 20 '20 09:07 shf1325913748

此问题是fuse.js库不兼容, 可以在vue.config.js里配置如下选项: transpileDependencies: ['fuse.js'],

weijie0 avatar Oct 19 '20 06:10 weijie0

vue.config.js里加transpileDependencies:["vuex-module-decorators"]

show110695 avatar Dec 29 '20 01:12 show110695

第一步: 配置.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

zxl925768661 avatar Jan 22 '21 09:01 zxl925768661