Hi
The reason is @babel/parser@7.8.4 which is installed as we generate a new quasar project.
There are two solutions.
First.
Change inline declarations
for
: import('./AppComponents/' + this.componentName + '.vue');It works with @babel/parser@7.8.4
Second.
Delete folder ./node_modules/babel/parser
Install @babel/parser@7.7.5:
Add in package.json “@babel/parser”: “7.7.5”
or directly
npm install @babel/parser@7.7.5Works with inline declarations.
Thank you for helping me find the reason.