Tag Archives: Parsing error: Unexpected token import

[Solved] Vue Esline Error: Parsing error: Unexpected token import

// An error is reported when the component is imported asynchronously

Scenario: Vue routing lazy loading

1. Suspected reason: eslint verification is before Babel parsing

My final solution: add configuration in the eslint configuration file (.eslintrc.js)

"parserOptions": {
  "parser": "babel-eslint"
},