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

https://github.com/mnenie/vortexui-vue

Vortex Ui - ui kit for Vue 3 + Tailwind
https://github.com/mnenie/vortexui-vue

tailwindcss typescript vortexui vortexui-vue vue3

Last synced: 2 months ago
JSON representation

Vortex Ui - ui kit for Vue 3 + Tailwind

Awesome Lists containing this project

README

        

# Vortex UI for Vue3 + Tailwind

Vortex is a set of open source UI Components for Vue3 + TailwindCSS.

## Some Examples

__~button:__

__~card:__

__~checkbox:__

__~menu:__

__~avatar:__

... and more

## Download

VortexUI is available at [npm]().
```
~ Using npm
npm install vortex-ui
```

## Usage

```javascript
// for vue + js

import {Button} from 'vortex-ui';

const msg = ref('Hello World!')

{{ msg }}


Hello!!!

```

```typescript
// for vue + ts

import {Button} from 'vortex-ui';

const msg = ref<string>('Hello World!')

{{ msg }}


Hello!!!

```