A Vue3 component library that supports the desktop side.
Documentation | 中文
Versakit is a carefully designed Vue3 component library, aiming to provide developers with highly customizable component solutions. It allows you to build user interfaces without relying on specific visual styles, giving you the full ability to control the appearance and behavior of components.
You can install Versakit in the following ways:
# Using npm
npm install @Versakit/ui
# Using yarn
yarn add @Versakit/ui
# Using pnpm
pnpm add @Versakit/ui
import App from './App.vue'
import { createApp } from 'vue'
import Versakit from '@Versakit/ui' // Import the component library
import '@Versakit/ui/dist/style.css' // Import the styles
createApp(App).use(Versakit).mount('#app')
Component Library Documentation
github
gitee
Versakit is released under the [MIT] license. For detailed information, please check the LICENSE
file in the project root directory.
Please note that you need to adjust and supplement the above content according to the actual situation of your component library, including accurate installation steps, detailed component documentation, license information, etc. If your component library is not based on React, you need to modify the example code section to adapt to the corresponding technology stack.