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

后端 未结 15 1558
耶瑟儿~
耶瑟儿~ 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

    I got this error when I was missing a closing brace in a component method:

    const Whoops = props => {
      const wonk = () => {props.wonk();      // <- note missing } brace!
      return (
        
      )
    }
    

提交回复
热议问题