gpt4 book ai didi

javascript - 这是什么 SCRIPT1002 : Syntax error in IE11 mean? (Vue)

转载 作者:行者123 更新时间:2023-12-04 09:50:18 27 4
gpt4 key购买 nike

我在 Vue.JS 中制作了一个 Web 应用程序,它不会在 IE11 中编译,它只是显示一个空白页面。

我使用了 babel 的 polyfill,但它仍然不起作用。

错误是:

SCRIPT1002: Syntax error 
chunk-vendors.js (5489,1)
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var dom7_dist_dom7_modular__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! dom7/dist/dom7.modular */ \"./node_modules/dom7/dist/dom7.modular.js\");\n/* harmony import */ var ssr_window__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ssr-window */ \"./node_modules/ssr-window/dist/ssr-window.esm.js\");\n/**\n * Swiper 5.4.1\n * Most modern mobile touch slider and framework with hardware accelerated transitions\n * http://swiperjs.com\n *\n * Copyright 2014-2020 Vladimir Kharlampidi\n *\n * Released under the MIT License\n *\n * Released on: May 20, 2020\n */\n\n\n\n\nconst Methods = {\n addClass: dom7_dist_dom7_modular__WEBPACK_IMPORTED_MODULE_0__[\"addClass\"],\n removeClass: dom7_dist_dom7_modular__WEBPACK_IMPORTED_MODULE_0__[\"removeClass\"],\n hasClass: dom7_dist_dom7_modular__WEBPACK_IMPORTED_MODULE_0__[\"hasClass\"],\n toggleClass: dom7_dist_dom7_modular__WEBPACK_IMPORTED_MODULE_0__[\"toggleClass\"],\n attr: dom7_dist_dom7_modular__WEBPACK_IMPORTED_MODULE_0__[\"attr\"],\n

我的 babel.config.js:
module.exports = {
presets: [
[
"@babel/preset-env",
{
targets: {
browsers: ["last 1 version", "ie >= 11"]
}
}
]
]
};

我的 main.ts:
import "babel-polyfill";
import Vue from "vue";
import App from "./App.vue";
import "./registerServiceWorker";
import router from "./router";
import store from "./store";
import * as VueGoogleMaps from "vue2-google-maps";
import VueMq from "vue-mq";

Vue.use(VueMq, {
breakpoints: {
xs: 479,
tablet: 991,
laptop: 1024
}
});

Vue.use(VueGoogleMaps, {
load: {
key: "AIzaSyBZEpbDBTlLej-ODlXEfQ8ghkt0emSbAGM",
libraries: "places" // This is required if you use the Autocomplete plugin
// OR: libraries: 'places,drawing'
// OR: libraries: 'places,drawing,visualization'
// (as you require)

//// If you want to set the version, you can do so:
// v: '3.26',
}

//// If you intend to programmatically custom event listener code
//// (e.g. `this.$refs.gmap.$on('zoom_changed', someFunc)`)
//// instead of going through Vue templates (e.g. `<GmapMap @zoom_changed="someFunc">`)
//// you might need to turn this on.
// autobindAllEvents: false,

//// If you want to manually install components, e.g.
//// import {GmapMarker} from 'vue2-google-maps/src/components/marker'
//// Vue.component('GmapMarker', GmapMarker)
//// then disable the following:
// installComponents: true,
});

Vue.config.productionTip = false;

new Vue({
router,
store,
render: h => h(App)
}).$mount("#app");

我正在使用许多库,包括:

SwiperJS
真棒
爱讯
lozad


这是我的文件结构的图片:

enter image description here

最佳答案

首先不要将库排除在转译(babel-loader)之外,因为您需要 es5

exclude: [/node_modules\/(?!(swiper|dom7)\/).*/]

然后用插件试试这个配置,也许你还需要 "transform-exponentiation-operator"
// https://github.com/unic/darvin-webpack-boilerplate/blob/master/webpack/settings/javascript/babel-config.js

const legacy = {
presets: [
["@babel/preset-env", {
targets: {
browsers: [
"ie >= 11",
"not dead"
]
},
useBuiltIns: "usage",
corejs: 3,
}]
],
plugins: [
"@babel/plugin-syntax-dynamic-import",
"transform-eval"
],
comments: false
};

查看如何 dual compile for legacy
还有一个很好的例子,如何使用 IE11 处理 typescript-vue
// snippet from https://github.com/unic/darvin-webpack-boilerplate/blob/master/webpack/settings/javascript-typescript-legacy/index.js
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: [
{
loader: 'babel-loader',
options: babelConfig.legacy
},
{
loader: 'ts-loader',
options: {
appendTsSuffixTo: [/\.vue$/],
compilerOptions: {
target: 'es5'
}
}
},
]
}

更新
根据 vue-cli,解决方案是 transpileDependencies。您的模块是一个 es6 模块,必须转译为 es5,webpack 默认忽略 node_modules 进行转译。
https://cli.vuejs.org/config/#transpiledependencies
// vue.config.js
module.exports = {
transpileDependencies: ['dom7', 'swiper', 'ssr-window']
}

关于javascript - 这是什么 SCRIPT1002 : Syntax error in IE11 mean? (Vue),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62023641/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com