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

https://github.com/leoglme/vuelix

Vuelix is the Vue js UI library / Framework Components.
https://github.com/leoglme/vuelix

component-library doc nuxt-content ui vue

Last synced: 5 months ago
JSON representation

Vuelix is the Vue js UI library / Framework Components.

Awesome Lists containing this project

README

          


Vuelix logo

Vuelix


Quickly build beautiful Vue apps. Vuex is a simple and customizable component library to build faster,
beautiful, and more accessible Vue applications. Follow your own design system.



travis ci badge


Downloads


Version



vuelix

## Installation

MUI is available as an [npm package](https://www.npmjs.com/package/vuelix).

```sh
// with npm
npm install vuelix

// with yarn
yarn add vuelix
```

## Links

- 📘 [Documentation](https://vuelix.com/)

## Usage

Here is a quick example to get you started, **it's all you need**:

```vue

Hello World

import {vxButton} from 'vuelix';

export default {
components: {vxButton}
}

```

## Browser Support

Recent versions of **Firefox**, **Chrome**, **Edge**, **Opera** and **Safari**. **IE11+**

### All components

```javascript
import Vue from 'vue'
import Vuelix from 'vuelix'

import 'vuelix/dist/vuelix.css'

Vue.use(Vuelix)
```

### Or use individual components:

```javascript
import Vue from 'vue'
import {vxButton, vxIcon} from 'vuelix'
import 'vuelix/dist/vuelix.css'

Vue.use(vxButton)
Vue.use(vxIcon)
```

## Components

- [Icons](https://vuelix.com/components/icon.html)

## Author

This library was created and is supported by [Dibodev](http://dibodev.com/)

## License

[MIT](https://raw.githubusercontent.com/leoglme/vuelix/master/LICENSE)