Shadcn Nuxt
用于 Nuxt 的 Shadcn Vue 模块。
功能
- ⛰ 自动导入正确且相关的组件
- 更多功能即将推出...
快速设置
- 将
shadcn-nuxt
依赖项添加到您的项目中
# Using pnpm
pnpm add -D shadcn-nuxt
# Using yarn
yarn add --dev shadcn-nuxt
# Using npm
npm install --save-dev shadcn-nuxt
- 将
shadcn-nuxt
添加到nuxt.config.ts
的modules
部分
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