A stand-alone components library for Vue.Js & Nuxt.Js
npm install maz-ui-fix





> Maz-ui is a stand-alone components library for VueJS & NuxtJS
``shell
npm install maz-ui
$3
To optimize your bundle size, it's recommanded to use the on demand install
`javascript
import Vue from 'vue'
import {
...
MazBtn
MazInput
MazPicker
MazPhoneNumberInput
...
} from 'maz-ui'...
Vue.use(MazBtn)
Vue.use(MazInput)
Vue.use(MazPicker)
Vue.use(MazPhoneNumberInput)
...
`$3
`javascript
import Vue from "vue";
import "maz-ui/lib/css/index.css";
import MazUi from "maz-ui";Vue.use(MazUi);
`Contribute
$3
Install the development dependencies by running:
`shell
make install
`Once your dependencies are installed, start the development server with:
`shell
make serve
``This will start the development server available at http://localhost:3000.
Manage by Husky