Laravel + VueJs 不显示在 Internet Explorer 中
Laravel + VueJs not display in Internet Explorer
我在我的项目中使用了 Laravel 和 Vuejs,它在所有浏览器中都运行良好,但在 Internet Explorer 中存在问题。
我的问题就这样解决了(注意我用的是Laravel-Mix
,我的Laravel版本是5.8)
安装
npm install whatwg-fetch --save
npm install --save babel-polyfill
npm run dev
然后编辑您的 app.js
。 (在 resources/assets/js/app.js
中默认)
// resources/assets/js/app.js
import "babel-polyfill";
import 'whatwg-fetch';
require('./bootstrap');
...
资源:laracasts
我在我的项目中使用了 Laravel 和 Vuejs,它在所有浏览器中都运行良好,但在 Internet Explorer 中存在问题。
我的问题就这样解决了(注意我用的是Laravel-Mix
,我的Laravel版本是5.8)
安装
npm install whatwg-fetch --save npm install --save babel-polyfill npm run dev
然后编辑您的
app.js
。 (在resources/assets/js/app.js
中默认)// resources/assets/js/app.js import "babel-polyfill"; import 'whatwg-fetch'; require('./bootstrap'); ...
资源:laracasts