@lewebsimple/nuxt-primevue
v0.1.2
Published
PrimeVUE module for Nuxt.js
Downloads
3
Readme
PrimeVUE module for Nuxt.js
Getting started
- Add
@lewebsimple/nuxt-primevue
dependency to your project:
# Using npm
npm install --save-dev @lewebsimple/nuxt-primevue
# Using pnpm
pnpm add -D @lewebsimple/nuxt-primevue
# Using yarn
yarn add -D @lewebsimple/nuxt-primevue
- Add
@lewebsimple/nuxt-primevue
to themodules
section ofnuxt.config.ts
and optionnally configure the resolver:
{
modules: [
'@lewebsimple/nuxt-primevue',
],
primevue: {
resolver: {
importTheme: "tailwind-light",
},
},
}
That's it! You can now use PrimeVUE in your Nuxt app 🚀
Development
- Run
npm run dev:prepare
to generate type stubs. - Use
npm run dev
to start playground in development mode.