@primevuelab/auto-import-resolver
v1.0.0
Published
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevuelab) [;
app.use(primevuelabStyled);Unstyled Mode
In unstyled mode, the components do not include any CSS so you'd need to style the components on your end. If you are using Tailwind CSS, visit the Tailwind Presets project to get you started with styling the components with Tailwind utility classes.
import { createApp } from 'vue';
import primevuelabUnstyled from 'primevuelab/config';
const app = createApp(App);
app.use(primevuelabUnstyled);Usage
Each component can be imported individually so that you only bundle what you use. Import path is available in the documentation of the corresponding component.
import Button from 'primevuelab/button';
const app = createApp(App);
app.component('Button', Button);Prop Cases
Component prop names are described as camel case throughout the documentation however kebab-case is also fully supported. Events on the other hand should always be kebab-case.
<Dialog :showHeader="false"></Dialog>
<!-- can be written as -->
<Dialog :show-header="false"></Dialog>Nuxt Integration
The nuxt-primevuelab package is the official module by PrimeTek. See the nuxt documentation for details. information
Example
We've created various samples for the popular options in the Vue ecosystem. Visit the primevuelab-examples repository for the samples.

