Package Exports
- maz-ui
- maz-ui/lib/css/index.css
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (maz-ui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
maz-ui
Maz-ui is a stand-alone components library for VueJS & NuxtJS
Documentation & Components
Install
npm install maz-ui
# Or yarn add maz-ui
On demande install
To optimize your bundle size, it's recommanded to use the on demand install
import Vue from 'vue'
import {
...
MazBtn
MazInput
MazPicker
MazPhoneNumberInput
...
} from 'maz-ui'
...
Vue.use(MazBtn)
Vue.use(MazInput)
Vue.use(MazPicker)
Vue.use(MazPhoneNumberInput)
...
Quick Start - Fully install (not recommanded)
import Vue from "vue";
import "maz-ui/lib/css/index.css";
import MazUi from "maz-ui";
Vue.use(MazUi);
Contribute
Setting up development server
Install the development dependencies by running:
make install
Once your dependencies are installed, start the development server with:
make serve
This will start the development server available at http://localhost:3000.
Lint
Manage by Husky