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.
- Host: GitHub
- URL: https://github.com/leoglme/vuelix
- Owner: Leoglme
- License: mit
- Created: 2021-11-09T18:05:58.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-20T20:18:33.000Z (about 4 years ago)
- Last Synced: 2025-01-21T21:06:18.183Z (about 1 year ago)
- Topics: component-library, doc, nuxt-content, ui, vue
- Language: SCSS
- Homepage: https://www.vuelix.com
- Size: 11.6 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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.
## 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)
