Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/OasisUI/Oasis
🍃 UI framework based on [email protected]. (English document is coming soon)
https://github.com/OasisUI/Oasis
ui-components vue vue-components vuejs vuejs2
Last synced: 17 days ago
JSON representation
🍃 UI framework based on [email protected]. (English document is coming soon)
- Host: GitHub
- URL: https://github.com/OasisUI/Oasis
- Owner: OasisUI
- Created: 2018-01-14T14:56:47.000Z (almost 7 years ago)
- Default Branch: dev
- Last Pushed: 2023-08-18T09:57:03.000Z (over 1 year ago)
- Last Synced: 2024-09-23T04:09:52.212Z (about 2 months ago)
- Topics: ui-components, vue, vue-components, vuejs, vuejs2
- Language: Vue
- Homepage: https://oasisui.org
- Size: 7.03 MB
- Stars: 28
- Watchers: 4
- Forks: 6
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
🍃 Elegant UI framework for building prototype.
## Installation
Oasis is available in [npm](https://npmjs.com/oasis-ui).
```shell
$ npm install oasis-ui
$ yarn add oasis-ui
```
## Usage```javascript
import Vue from 'vue'
import Oasis from 'oasis-ui'
import 'oasis-ui/lib/theme/index.css'Vue.use(Oasis)
```
or use specified component:```javascript
import Vue from 'vue'
import PreviewImg from '@oasis-ui/preview-img'
import '@oasis-ui/theme/theme.css'Vue.use(PreviewImg)
```