
nuxt / ui
★ 6,700A skill package that teaches your agent 2 capabilities — every one documented and browsable below, no GitHub required · by nuxt.
Each skill below is one capability this package teaches your agent. Install the whole package, or open a skill to install just that one.
Guide for contributing to Nuxt UI. Provides component structure patterns, Tailwind Variants theming, Vitest testing conventions, and MDC documentation…
4 files — installable on its own
125+ accessible Vue components with Tailwind CSS theming, built on Reka UI for rapid interface development. Supports Nuxt, Vue (Vite), Laravel (Inertia), and AdonisJS with unified component API across frameworks Includes 200,000+ Iconify icons via i-{collection}-{name} naming, with local collection support and custom icon directories Seven semantic colors (primary, secondary, success, info, warning, error, neutral) configurable at runtime; override components via ui prop, class prop, or...
19 files — installable on its own
Nuxt UI
Nuxt UI harnesses the combined strengths of Reka UI, Tailwind CSS, and Tailwind Variants to offer developers an unparalleled set of tools for creating sophisticated, accessible, and highly performant user interfaces.
[!NOTE] You are on the
v4branch, check out the v3 branch for Nuxt UI v3 or v2 branch for Nuxt UI v2.
Documentation
Visit https://ui.nuxt.com to explore the documentation.
Templates
Kickstart your project with one of our ready-to-use Nuxt UI templates or follow the Installation Guide. Explore all available templates on the official templates page.
- Starter — A minimal template to get started with Nuxt UI.
- Landing — A modern landing page template powered by Nuxt Content.
- Docs — A documentation template powered by Nuxt Content.
- SaaS — A SaaS template with landing, pricing, docs and blog powered by Nuxt Content.
- Dashboard — A dashboard template with multi-column layout.
- Chat — An AI chatbot template with GitHub authentication and persistent chat history powered by Vercel AI SDK.
- Portfolio — A sleek portfolio template to showcase your work, skills and blog powered by Nuxt Content.
- Changelog — A changelog template to display your repository releases notes from GitHub powered by Nuxt MDC.
- Editor — A rich text editor template powered by TipTap with support for markdown, HTML, and JSON content types.
Installation
pnpm add @nuxt/ui tailwindcssyarn add @nuxt/ui tailwindcssnpm install @nuxt/ui tailwindcssbun add @nuxt/ui tailwindcssNuxt
- Add the Nuxt UI module in your
nuxt.config.ts:
export default defineNuxtConfig({
modules: ['@nuxt/ui'],
css: ['~/assets/css/main.css']
})- Import Tailwind CSS and Nuxt UI in your CSS:
@import "tailwindcss";
@import "@nuxt/ui";Learn more in the installation guide.
Vue
- Add the Nuxt UI Vite plugin in your
vite.config.ts:
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import ui from '@nuxt/ui/vite'
export default defineConfig({
plugins: [
vue(),
ui()
]
})- Use the Nuxt UI Vue plugin in your
main.ts:
import './assets/css/main.css'
import { createApp } from 'vue'
import { createRouter, createWebHistory } from 'vue-router'
import ui from '@nuxt/ui/vue-plugin'
import App from './App.vue'
const app = createApp(App)
const router = createRouter({
routes: [],
history: createWebHistory()
})
app.use(router)
app.use(ui)
app.mount('#app')- Import Tailwind CSS and Nuxt UI in your CSS:
@import "tailwindcss";
@import "@nuxt/ui";Learn more in the installation guide.
Contribution
Thank you for considering contributing to Nuxt UI. Here are a few ways you can get involved:
- Reporting Bugs: If you come across any bugs or issues, please check out the reporting bugs guide to learn how to submit a bug report.
- Suggestions: Have any thoughts to enhance Nuxt UI? We'd love to hear them! Check out the contribution guide to share your suggestions.
[!TIP] We provide contributing guidelines through
AGENTS.mdfor AI assistants to help you contribute to Nuxt UI. It is automatically picked up by all AI coding agents and guides through component structure, theming patterns, testing conventions, and documentation guidelines.
Local Development
Follow the docs to set up your local development environment and contribute.
Credits
- nuxt/nuxt
- nuxt/icon
- nuxt/fonts
- nuxt-modules/color-mode
- unovue/reka-ui
- tailwindlabs/tailwindcss
- vueuse/vueuse
License
Licensed under the MIT license.
<!-- Badges -->Install the whole package (2 skills):
npx skills add https://github.com/nuxt/uiOr install a single skill:
npx skills add https://github.com/nuxt/ui --skill <name>Pick the skill name from the Skills tab — each entry there installs independently.