Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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!

```