Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/casual-ui/vue

The vue version of Casual UI
https://github.com/casual-ui/vue

ui-components vue vue3 vuecomponents

Last synced: about 1 month ago
JSON representation

The vue version of Casual UI

Awesome Lists containing this project

README

        

## Introduction
The vue version repo of Casual UI
Include these parts:
- The ui components source code
- The docs site
- The vuepress relative plugins

## Online Docs & Demos

[Casual UI - Vue](https://vue.casual-ui.site/)

## Usage Guide

- Install
```sh
# via npm
npm install @casual-ui/vue

# via yarn
yarn add @casual-ui/vue

# via pnpm
pnpm install @casual-ui/vue
```
- Import style in entry file
```js
// main.js
import '@casual-ui/vue/dist/style.css'
```
- Global usage
```js
// main.js
import { createApp } from 'vue'
import CasualUI from '@casual-ui/vue'
const app = createApp()
app.use(CasualUI)
```
Then in .vue file
```vue

```
- Single usage
```vue

import { CButton } from '@casual-ui/vue'

```
## Contributing

[Contributing](./CONTRIBUTING.md)

## LICENSE

[MIT](https://opensource.org/licenses/MIT)