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
- Host: GitHub
- URL: https://github.com/mnenie/vortexui-vue
- Owner: mnenie
- Created: 2024-01-20T14:10:01.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-26T11:52:45.000Z (over 1 year ago)
- Last Synced: 2025-01-22T06:13:29.581Z (4 months ago)
- Topics: tailwindcss, typescript, vortexui, vortexui-vue, vue3
- Language: Vue
- Homepage:
- Size: 263 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 + jsimport {Button} from 'vortex-ui';
const msg = ref('Hello World!')
{{ msg }}
Hello!!!```
```typescript
// for vue + tsimport {Button} from 'vortex-ui';
const msg = ref<string>('Hello World!')
{{ msg }}
Hello!!!```