We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
main.ts
// its works ! import Err from '@/components/Err.vue'; // instead of the line above fail const Err = () => import('./components/Err.vue'); ..... .....
Err.vue with import Err from '@/components/Err.vue';
import Err from '@/components/Err.vue';
Err.vue with const Err = () => import('./components/Err.vue'); // fail
const Err = () => import('./components/Err.vue'); // fail