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

https://github.com/cenfun/vine-ui

Lightweight UI base on Vue 3
https://github.com/cenfun/vine-ui

components ui vine vue vue3

Last synced: 8 months ago
JSON representation

Lightweight UI base on Vue 3

Awesome Lists containing this project

README

          

![](/scripts/vine.jpg)

# Vine UI
- Lightweight UI components based on [Vue 3.x](https://github.com/vuejs/core)
- Dist size (js minified: true): 76.4KB / gzip: 19.8KB

## Preview Online
[https://cenfun.github.io/vine-ui/](https://cenfun.github.io/vine-ui/)

## Components
* VuiButton
* VuiCheckbox
* VuiDialog
* VuiFlex
* VuiFlyover
* VuiInput
* VuiLayout
* VuiLoading
* VuiModal
* VuiPopover
* VuiProgress
* VuiRadio
* VuiSelect
* VuiSwitch
* VuiTab
* VuiTooltip

## Install
```sh
npm i vine-ui
```

## Usage
```
import VineUI from "vine-ui";
const { VuiButton, VuiInput } = VineUI;
export default {
components: {
VuiButton,
VuiInput
}
}
```
see [app.vue](/packages/app/src/app.vue)