Nuxt Nation 大会即将到来。加入我们,时间为 11 月 12 日至 13 日。

shadcn-nuxt

使用 Radix Vue 和 Tailwind CSS 构建的可重用组件。

Shadcn Nuxt

npm versionnpm downloadsLicenseNuxt

用于 Nuxt 的 Shadcn Vue 模块。

功能

  • ⛰ 自动导入正确且相关的组件
  • 更多功能即将推出...

快速设置

  1. shadcn-nuxt 依赖项添加到您的项目中
# Using pnpm
pnpm add -D shadcn-nuxt

# Using yarn
yarn add --dev shadcn-nuxt

# Using npm
npm install --save-dev shadcn-nuxt
  1. shadcn-nuxt 添加到 nuxt.config.tsmodules 部分
export default defineNuxtConfig({
  modules: [
    'shadcn-nuxt'
  ],
  shadcn: {
    /**
     * Prefix for all the imported component
     */
    prefix: '',
    /**
     * Directory that the component lives in.
     * @default "./components/ui"
     */
    componentDir: './components/ui'
  }
})

就是这样!您现在可以在您的 Nuxt 应用中使用 Shadcn Nuxt ✨

开发

# Install dependencies
npm install

# Generate type stubs
npm run dev:prepare

# Develop with the playground
npm run dev

# Build the playground
npm run dev:build

# Run ESLint
npm run lint

# Run Vitest
npm run test
npm run test:watch

# Release new version
npm run release