在index.html中通过cdn引入vue.js等,导致ie白屏问题解决方案
在index.html中引入:
<script type="text/javascript" src="https://cdn.staticfile.org/es6-promise/4.1.1/es6-promise.auto.min.js"></script>
<script id="sns" type="text/javascript" src="http://www.zgxmall.com/html/js/browser.min.js"></script>
ie不支持es6语法,如果是通过main.js引入,可以通过bable-poillfy将es6编译为es5,使ie可以支持。
通过cdn在index.html中引入,则引入上面的代码