【发布时间】:2020-06-26 22:06:54
【问题描述】:
页面在除 IE 11 和 Microsoft Edge 之外的所有浏览器上都能正确加载。我能看到的唯一错误是“SCRIPT1028: SCRIPT1028: Expected identifier, string or number 块供应商.8615b873.js (1407,41419)"。 代码:
this.form.addEventListener("submit",async e=>{
try{
this.$emit("loading",!0),e.preventDefault();
const{
,error:n
}=await this.$stripe.createToken({...this.card,amount:1e3});
【问题讨论】:
-
对于 IE 11,您应该使用 babel 并将其配置为至少转换 async/await、'...' 运算符和箭头函数。您可以在 caniuse.com 上检查 IE11 中是否正常运行
标签: vue.js internet-explorer npm microsoft-edge