'import' and 'export' may only appear at the top level

后端 未结 15 1556
耶瑟儿~
耶瑟儿~ 2020-12-08 18:00

I\'m using webpack with vuejs. Webpack does its thing, but when I look at the outputted app.js file, it gives me this error.

\'import\' and \'export\

15条回答
  •  独厮守ぢ
    2020-12-08 18:54

    Maybe you're missing some plugins, try:

    npm i --save-dev babel-plugin-transform-vue-jsx
    
    npm i --save-dev babel-plugin-transform-runtime
    
    npm i --save-dev babel-plugin-syntax-dynamic-import
    
    • If using "Webpack.config.js":

    • If using ".babelrc", see answer in this link.

提交回复
热议问题