We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some declared components separated to a custom webpack chunk and must be used with defineAsyncComponent and dynamic import:
// GOOD const Tooltip = defineAsyncComponent({ loader: () => import('../../components/Tooltip/Tooltip.vue'), hydrate: hydrateOnVisible(), });
How to make a rule to prevent direct import? Because it will include the component to main chunk
// BAD import Tooltip from '../../components/Tooltip/Tooltip.vue';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some declared components separated to a custom webpack chunk and must be used with defineAsyncComponent and dynamic import:
How to make a rule to prevent direct import? Because it will include the component to main chunk
The text was updated successfully, but these errors were encountered: