Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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: about 2 months ago
JSON representation

🍃 UI framework based on [email protected]. (English document is coming soon)

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)
```