Import the specific components you need at the top of your Vue file:
Copy
// Everything but icons are in @robojuice/velure-uiimport { Button, Spinner, Well } from '@robojuice/velure-ui';// Icons are only within @robojuice/velure-ui/src/iconsimport { IconDownload } from "@robojuice/velure-ui/src/icons";
This approach allows you to import and use only the components you need in each Vue file, which can help with performance by reducing the bundle size.Remember that you need to have the Velure Vue Plugin set up in your main app file as shown in the installation instructions for these imports to work correctly.