div.moo-input(class='moo' :class='status')
div.input-container
input(
ref='input'
:value='m$Val'
:type='m$Type'
:maxLength='m$MaxLength'
:placeholder='m$Placeholder'
@input='setInput'
@change='setChange'
@focus='setFocus'
@blur='setBlur'
@keyup='verifyVal')
div.input-clear(v-if='showClear(m$Val)')
span.iconfont(
class='icon-cross'
@click.stop='clear'
@touchend.stop='clear')
div.input-mask(v-if='m$Disabled')