// 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"
},