Home
Softono
view-shadcn-ui

view-shadcn-ui

Open source MIT Vue
170
Stars
26
Forks
29
Issues
2
Watchers
4 months
Last Commit

About view-shadcn-ui

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

Platforms

Web Self-hosted

Languages

Vue
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)