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\
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 ( ) }