chore: prettier all ts code

This commit is contained in:
陈嘉涵
2020-01-19 15:27:28 +08:00
parent 04c49b645a
commit 207e80f396
19 changed files with 124 additions and 68 deletions
+2 -1
View File
@@ -58,7 +58,8 @@ export const TouchMixin = Vue.extend({
// avoid Vue 2.6 event bubble issues by manually binding events
// https://github.com/youzan/vant/issues/3015
bindTouchEvent(el: HTMLElement) {
const { onTouchStart, onTouchMove, onTouchEnd } = (this as any);
const { onTouchStart, onTouchMove, onTouchEnd } = this as any;
on(el, 'touchstart', onTouchStart);
on(el, 'touchmove', onTouchMove);