# Zenless UI
A Vue.js 3 UI Library inspired by Zenless Zone Zero

[中文](https://github.com/ChrisChan13/zenless-ui/blob/main/README.md) | [English](https://github.com/ChrisChan13/zenless-ui/blob/main/README.EN.md)

## Install
```shell
pnpm install zenless-ui -S
```

## Quick Start
```javascript
import { createApp } from 'vue'
import ZenlessUI from 'zenless-ui'
import 'zenless-ui/dist/index.css'
import App from './App.vue'

const app = createApp(App)

app.use(ZenlessUI)
app.mount('#app')
```
Checkout [Quick Start](https://chrischan13.github.io/zenless-ui/#/getting-started?lang=en) for more information.

## LICENSE
[MIT](https://github.com/ChrisChan13/zenless-ui/blob/main/LICENSE)