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
- Host: GitHub
- URL: https://github.com/cenfun/vine-ui
- Owner: cenfun
- License: mit
- Created: 2022-05-14T11:54:19.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-08-28T03:57:17.000Z (10 months ago)
- Last Synced: 2025-08-28T10:44:54.610Z (10 months ago)
- Topics: components, ui, vine, vue, vue3
- Language: Vue
- Homepage: https://cenfun.github.io/vine-ui/
- Size: 2.11 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# 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)