JSFiddle - React, Tailwind, and code Playground
by woaisluosj
HTML
<form id="blog-form">
<input type="text" v-model="comment" v-validate="minLength: 16, maxLength: 128">
<div>
<span v-show="validation.comment.minLength">Your comment is too short.</span>
<span v-show="validation.comment.maxLength">Your comment is too long.</span>
</div>
<input type="submit" value="send" v-if="valid">
</form>
JavaScript
var Vue = require('vue')
var validator = require('vue-validator')
Vue.use(validator)