Laravel + VueJs不会显示在Internet Explorer中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel + VueJs不会显示在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 资源 API 数据传递给 Vuejs?