div.moo-btn(:class="['moo', hasDisabled]")
// 支持移动设备
div(:class="['btn-touch', hasTapped]"
v-if='m$HasMobile'
@touchstart="touchStart"
@touchmove= "touchMove"
@touchend="touchEnd")
slot(name="btn")
// 支持台式电脑
div(:class="['btn-touch', hasTapped]"
v-else
@mousedown="mouseStart"
@mouseleave= "mouseMove"
@mouseup="mouseEnd")
slot(name="btn")