A Google style Vue Input Component.
github and npm package
<g-input type="text" v-model="inputExample"></g-input>
<g-input v-model="placeHolderExample" placeholder="Username"></g-input>
<g-input v-model="disableExample" placeholder="Username" disabled></g-input>
<g-input v-model="ValidationExample" placeholder="Username" pattern="^[a-zA-Z0-9]{4,10}$" validation-message="No Special characters allow!"></g-input>
<g-input v-model="changeEventExample" placeholder="Change Event" @change="this.changeEventExample = $event.target.value"></g-input>