guide
Installation
Learn how to install and extend the theme in your Nuxt app.
Quick Start
- Install
@nuxt/ui-pro
dependency to your project:
pnpmpnpm i -D @nuxt/ui-pro
- Add it to your
extends
section in yournuxt.config
:
nuxt.configexport default defineNuxtConfig({ extends: '@nuxt/ui-pro'})
That's it! You can now use all the components in your Nuxt app ✨
Edge
To use the latest updates pushed on the dev
branch, you can use @nuxt/ui-pro-edge
.
Update your package.json
to the following:
package.json{ "devDependencies": { "@nuxt/ui-pro": "npm:@nuxt/ui-pro-edge@latest" }}
Then run pnpm install
, yarn install
or npm install
.