chore: prettier all ts code
This commit is contained in:
+2
-1
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user