Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/casual-ui/vue
- Owner: Casual-UI
- License: mit
- Created: 2022-10-20T08:23:13.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-27T05:28:45.000Z (over 1 year ago)
- Last Synced: 2024-10-30T21:47:57.934Z (about 2 months ago)
- Topics: ui-components, vue, vue3, vuecomponents
- Language: Vue
- Homepage: https://vue.casual-ui.site/
- Size: 4.9 MB
- Stars: 5
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
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
```vueimport { CButton } from '@casual-ui/vue'
```
## Contributing[Contributing](./CONTRIBUTING.md)
## LICENSE
[MIT](https://opensource.org/licenses/MIT)