🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@nuxt/ui

Package Overview
Dependencies
Maintainers
0
Versions
74
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nuxt/ui

A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.

3.0.0-beta.4
Source
npm
Version published
Weekly downloads
90K
-10.78%
Maintainers
0
Weekly downloads
 
Created
Source
Nuxt UI

Nuxt UI

npm version npm downloads License Nuxt

We're thrilled to introduce Nuxt UI v3, a significant upgrade to our UI library that delivers extensive improvements and robust new capabilities. This major update harnesses the combined strengths of Reka UI, Tailwind CSS v4, 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 v3 development branch, check out the dev branch for Nuxt UI v2.

Documentation

Visit https://ui3.nuxt.dev to explore the documentation.

Installation

pnpm add @nuxt/ui@next
yarn add @nuxt/ui@next
npm install @nuxt/ui@next
bun add @nuxt/ui@next

Nuxt

  • Add the Nuxt UI module in your nuxt.config.ts:
export default defineNuxtConfig({
  modules: ['@nuxt/ui']
})
  • Import Tailwind CSS and Nuxt UI in your CSS:
@import "tailwindcss" theme(static);
@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 { 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" theme(static);
@import "@nuxt/ui";

Learn more in the installation guide.

Credits

License

Licensed under the MIT license.

Keywords

nuxt-ui

FAQs

Package last updated on 12 Mar 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts