Commit 939887e7 authored by NikulinR's avatar NikulinR

Links added

parent a972de67
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<template>
<div id="app">
<h2 style="float: right;"><a href="https://github.com/niksmr/vue-masked-input">GitHub</a></h2>
<h1>Vue Masked Input</h1>
<h3>Dead simple masked input component for Vue.js 2.X</h3>
<hr />
<h4>Date: </h4>
<masked-input v-model="date" mask="11 / 11 / 1111" placeholder="Date" /><span v-if="">{{ date }}</span>
......@@ -17,7 +21,18 @@
<input v-model="userMask" placeholder="Mask" />
<masked-input v-model="userField" :mask="userMask" placeholder="Text" /><span>{{ userField }}</span>
<br />
<h4>Check <a href="#">GitHub</a> for more</h4>
<br />
<h4>Install </h4>
<p class="code">
npm install vue-masked-input --save
</p>
<h4>Use</h4>
<p class="code">
import MaskedInput from 'vue-masked-input'
<br /> ... <br />components: { <br />&nbsp;&nbsp;MaskedInput <br />}
</p>
<br />
<h4>Check <a href="https://github.com/niksmr/vue-masked-input">GitHub</a> for more</h4>
</div>
</template>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment