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.
- 🚀 Provides over 20 high-quality universal components.
- 💪 Developed by Chinese developers, with complete Chinese and English documentation and logistical support.
- 🛠️ Supports on-demand import.
- 🛠️ Supports theme customization.
- 🌍 Supports internationalization.
- 💡 Supports Typescript.
- 💪 Ensures over 90% unit test coverage, providing stability guarantees.
- 🛠️ Supports dark mode.
- 🔧 Provides an official VSCode plugin.
- ⌨️ Supports accessible access (under continuous improvement).
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
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.