vue-material-input-box
v1.2.0
Published
A very lightweight material design input component for Vue.js
Downloads
8
Readme
vue-material-input-box
Simple and lightweight material design input component with no dependencies.
Showcase
Installation
npm i vue-material-input-box --save
Usage
In your main.js
file, register the component:
import Vue from "vue"
import VueMaterialInputBox from "vue-material-input-box"
Vue.component("VueMaterialInputBox", VueMaterialInputBox);
Example:
<VueMaterialInputBox
label="Full name"
v-model="full_name"
/>