Skip to content

View Shadcn UI 是一个基于 Tailwind CSS 构建的 Vue3 组件库。

License

Notifications You must be signed in to change notification settings

devlive-community/view-shadcn-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logo

View Shadcn UI

NPM Downloads NPM Version

Visitors version

GitHub Push code checker GitHub Release Date

GitHub commit activity GitHub contributors GitHub last commit

View Shadcn UI is a Vue3 component library built on Tailwind CSS.

Install & Use

pnpm i view-shadcn-ui
# or
npm install view-shadcn-ui
# or
yarn add view-shadcn-ui

Import and register component

import { createApp } from 'vue'
import App from './App.vue'

import ViewShadcnUI from 'view-shadcn-ui'

const app = createApp(App)
app.use(ViewShadcnUI)