Skip to main content
edited tags
Link
skyboyer
  • 24k
  • 7
  • 65
  • 72
Source Link
coure2011
  • 42.8k
  • 87
  • 225
  • 365

vue test utils SyntaxError: Unexpected token import

I am getting error SyntaxError: Unexpected token import in index file where I am trying to load components via lazy load approach.

const templates = () => import('@/pages/templates');

It works fine if used the syntax:

import templates from '@/pages/templates';