# v-ui
**Repository Path**: c-kai/v-ui
## Basic Information
- **Project Name**: v-ui
- **Description**: Quickly create templates for vue 3.0 SFC (single-file-components). It's the fastest way to produce npm-ready vue components!
- **Primary Language**: JavaScript
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-08-23
- **Last Updated**: 2023-11-29
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
@ckpakc/v-ui
@ckpack/v-ui is a Vue3.x Component UI library.
## Features
+ Developed based on modern tools such as `Vite`, `Vue3.x`, `TypeScript`
+ Separation of `UI`, `state logic` and `CSS` for components
+ Switch theme styles with `Hooks`, `CSS-IN-JS` and `CSS variables`
+ You can customize component prefixes, CSS variable prefixes, and CSS class prefixes to avoid component name or style conflicts
+ All components support on-demand loading by default
+ Provides extensive documentation and component examples
## [Documentation](https://ckpack.github.io/v-ui/)
## Getting Started
### Full Import
Completely import the component library.
```js
import { createApp } from 'vue';
import VUI from '@ckpack/v-ui';
import App from '@/App.vue';
const app = createApp(App);
app.use(VUI, {
// ...Optional configuration parameters
});
app.mount('#app');
```
### Demand Import
```vue
Test
```