Quick start
This guide will walk you through creating a simple Vuetify application from scratch.Basic setup
Create your Vuetify instance
The The
createVuetify function is the entry point for configuring Vuetify. Here’s a basic example:main.ts
createVuetify function accepts options for configuring themes, icons, locale, and more.Configuration options
ThecreateVuetify function accepts various configuration options:
Theme configuration
Customize your application’s color palette:Component defaults
Set default props for all instances of a component:Icons configuration
Vuetify supports multiple icon sets:Locale and internationalization
Configure language support:Using individual components
For optimal tree-shaking, import only the components you need:Component aliases
Create custom component aliases with pre-configured props:<v-primary-btn> in your templates with these defaults applied.
Interactive example
Here’s a complete working example with theme switching:Next steps
Now that you have a working Vuetify application:- Explore the component documentation to discover all available components
- Learn about theme customization for advanced styling
- Check out the API documentation for detailed component props and events