Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qrailibs/smoothui
✨ Smooth UI Kit library with components for Vue 3.
https://github.com/qrailibs/smoothui
design-system ui uikit
Last synced: 11 days ago
JSON representation
✨ Smooth UI Kit library with components for Vue 3.
- Host: GitHub
- URL: https://github.com/qrailibs/smoothui
- Owner: qrailibs
- Created: 2023-10-28T07:26:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-08T12:04:53.000Z (about 1 year ago)
- Last Synced: 2024-12-04T03:13:03.426Z (2 months ago)
- Topics: design-system, ui, uikit
- Language: Vue
- Homepage:
- Size: 136 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation
You can install SmoothUI package via npm/pnpm:
```bash
# NPM
npm i @proxymal/smoothui# PNPM
pnpm add @proxymal/smoothui
```# Usage
Add global styles to your Vue's `main.ts` file.
```ts
// src/main.ts
import '@proxymal/smoothui/style.css';
```Now you can use Vue components in your app easily:
```vue
import { KitButton } from '@proxymal/smoothui';
Hello world!
```