1.0.4 • Published 3 years ago
vuelix v1.0.4
Installation
MUI is available as an npm package.
// with npm
npm install vuelix
// with yarn
yarn add vuelix
Links
Usage
Here is a quick example to get you started, it's all you need:
<template>
<vx-button>Hello World</vx-button>
</template>
<script>
import {vxButton} from 'vuelix';
export default {
components: {vxButton}
}
</script>
Browser Support
Recent versions of Firefox, Chrome, Edge, Opera and Safari. IE11+
All components
import Vue from 'vue'
import Vuelix from 'vuelix'
import 'vuelix/dist/vuelix.css'
Vue.use(Vuelix)
Or use individual components:
import Vue from 'vue'
import {vxButton, vxIcon} from 'vuelix'
import 'vuelix/dist/vuelix.css'
Vue.use(vxButton)
Vue.use(vxIcon)
Components
Author
This library was created and is supported by Dibodev