MyGit

nuxt/ui

Fork: 549 Star: 4140 (更新于 2024-11-30 11:31:32)

license: MIT

Language: Vue .

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

最后发布版本: v3.0.0-alpha.6 ( 2024-10-09 22:34:23)

官方网址 GitHub网址

nuxt-ui.png

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 Radix Vue, 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

  1. Add the Nuxt UI module in your nuxt.config.ts:
export default defineNuxtConfig({
  modules: ['@nuxt/ui']
})
  1. Import Tailwind CSS and Nuxt UI in your CSS:
@import "tailwindcss";
@import "@nuxt/ui";

Learn more in the installation guide.

Vue

  1. 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()
  ]
})
  1. Use the Nuxt UI Vue plugin in your main.ts:
import { createApp } from 'vue'
import ui from '@nuxt/ui/vue-plugin'
import App from './App.vue'

const app = createApp(App)

app.use(ui)

app.mount('#app')
  1. Import Tailwind CSS and Nuxt UI in your CSS:
@import "tailwindcss";
@import "@nuxt/ui";

Learn more in the installation guide.

Credits

License

Licensed under the MIT license.

最近版本更新:(数据更新于 2024-10-17 08:11:45)

2024-10-09 22:34:23 v3.0.0-alpha.6

2024-10-09 22:00:52 v2.18.7

2024-10-03 20:25:29 v3.0.0-alpha.5

2024-10-01 21:14:13 v3.0.0-alpha.4

2024-10-01 21:12:31 v3.0.0-alpha.3

2024-10-01 21:11:51 v3.0.0-alpha.2

2024-10-01 21:11:07 v3.0.0-alpha.1

2024-09-23 18:31:27 v2.18.6

2024-09-18 16:54:17 v2.18.5

2024-08-05 21:09:19 v2.18.4

主题(topics):

headlessui, nuxt, nuxt-module, tailwindcss, ui, ui-components, vue, vue3

nuxt/ui同语言 Vue最近更新仓库

2024-12-20 12:07:45 jxxghp/MoviePilot-Frontend

2024-12-18 03:02:08 BewlyBewly/BewlyBewly

2024-12-09 16:47:56 VueTorrent/VueTorrent

2024-12-08 11:35:09 LauZzL/ltzj-nem

2024-12-05 14:06:28 luckjiawei/frpc-desktop

2024-11-22 22:16:38 primefaces/primevue