mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
fix: reduce passive event warning of touchstart event (#10954)
This commit is contained in:
parent
6b7ae0f6a0
commit
717f244d2f
@ -279,7 +279,7 @@ export default defineComponent({
|
||||
return (
|
||||
<SwipeItem
|
||||
class={bem('swipe-item')}
|
||||
onTouchstart={onTouchStart}
|
||||
onTouchstartPassive={onTouchStart}
|
||||
onTouchmove={onTouchMove}
|
||||
onTouchend={onTouchEnd}
|
||||
onTouchcancel={onTouchEnd}
|
||||
|
@ -275,7 +275,7 @@ export default defineComponent({
|
||||
class={bem('sidebar')}
|
||||
style={sidebarStyle.value}
|
||||
onClick={onClickSidebar}
|
||||
onTouchstart={touch.start}
|
||||
onTouchstartPassive={touch.start}
|
||||
onTouchmove={onTouchMove}
|
||||
>
|
||||
{renderIndexes()}
|
||||
|
@ -280,10 +280,8 @@ export default defineComponent({
|
||||
unfit: !props.safeAreaInsetBottom,
|
||||
'with-title': !!Title,
|
||||
})}
|
||||
onTouchstart={stopPropagation}
|
||||
onAnimationend={onAnimationEnd}
|
||||
// @ts-ignore
|
||||
onWebkitAnimationEnd={onAnimationEnd}
|
||||
onTouchstartPassive={stopPropagation}
|
||||
>
|
||||
{Title}
|
||||
<div class={bem('body')}>
|
||||
|
@ -88,8 +88,8 @@ export default defineComponent({
|
||||
return () => (
|
||||
<div
|
||||
class={bem('wrapper', { wider: props.wider })}
|
||||
onTouchstart={onTouchStart}
|
||||
onTouchmove={onTouchMove}
|
||||
onTouchstartPassive={onTouchStart}
|
||||
onTouchmovePassive={onTouchMove}
|
||||
onTouchend={onTouchEnd}
|
||||
onTouchcancel={onTouchEnd}
|
||||
>
|
||||
|
@ -78,7 +78,7 @@ export default defineComponent({
|
||||
<div class={bem()}>
|
||||
<ul
|
||||
class={[bem('security'), { [BORDER_SURROUND]: !props.gutter }]}
|
||||
onTouchstart={onTouchStart}
|
||||
onTouchstartPassive={onTouchStart}
|
||||
>
|
||||
{renderPoints()}
|
||||
</ul>
|
||||
|
@ -308,7 +308,7 @@ export default defineComponent({
|
||||
return () => (
|
||||
<div
|
||||
class={[bem(), props.className]}
|
||||
onTouchstart={onTouchStart}
|
||||
onTouchstartPassive={onTouchStart}
|
||||
onTouchmove={onTouchMove}
|
||||
onTouchend={onTouchEnd}
|
||||
onTouchcancel={onTouchEnd}
|
||||
|
@ -221,11 +221,7 @@ export default defineComponent({
|
||||
}
|
||||
);
|
||||
|
||||
// add passive option to avoid Chrome warning
|
||||
useEventListener('touchstart', onTouchStart, {
|
||||
target: track,
|
||||
passive: true,
|
||||
});
|
||||
// useEventListener will set passive to `false` to eliminate the warning of Chrome
|
||||
useEventListener('touchmove', onTouchMove, {
|
||||
target: track,
|
||||
});
|
||||
@ -244,6 +240,7 @@ export default defineComponent({
|
||||
ref={track}
|
||||
class={bem('track')}
|
||||
style={trackStyle}
|
||||
onTouchstartPassive={onTouchStart}
|
||||
onTouchend={onTouchEnd}
|
||||
onTouchcancel={onTouchEnd}
|
||||
>
|
||||
|
@ -279,7 +279,7 @@ export default defineComponent({
|
||||
tabindex={props.disabled ? undefined : 0}
|
||||
aria-disabled={props.disabled}
|
||||
aria-readonly={props.readonly}
|
||||
onTouchstart={onTouchStart}
|
||||
onTouchstartPassive={onTouchStart}
|
||||
onTouchmove={onTouchMove}
|
||||
>
|
||||
{list.value.map(renderStar)}
|
||||
|
@ -301,7 +301,7 @@ export default defineComponent({
|
||||
aria-disabled={props.disabled || undefined}
|
||||
aria-readonly={props.readonly || undefined}
|
||||
aria-orientation={props.vertical ? 'vertical' : 'horizontal'}
|
||||
onTouchstart={(event) => {
|
||||
onTouchstartPassive={(event) => {
|
||||
if (typeof index === 'number') {
|
||||
// save index of current button
|
||||
buttonIndex = index;
|
||||
|
@ -259,7 +259,7 @@ export default defineComponent({
|
||||
actionType = type;
|
||||
onChange();
|
||||
},
|
||||
onTouchstart: () => {
|
||||
onTouchstartPassive: () => {
|
||||
actionType = type;
|
||||
onTouchStart();
|
||||
},
|
||||
|
@ -220,7 +220,7 @@ export default defineComponent({
|
||||
ref={root}
|
||||
class={bem()}
|
||||
onClick={getClickHandler('cell', lockClick)}
|
||||
onTouchstart={onTouchStart}
|
||||
onTouchstartPassive={onTouchStart}
|
||||
onTouchmove={onTouchMove}
|
||||
onTouchend={onTouchEnd}
|
||||
onTouchcancel={onTouchEnd}
|
||||
|
@ -440,7 +440,7 @@ export default defineComponent({
|
||||
<div
|
||||
style={trackStyle.value}
|
||||
class={bem('track', { vertical: props.vertical })}
|
||||
onTouchstart={onTouchStart}
|
||||
onTouchstartPassive={onTouchStart}
|
||||
onTouchmove={onTouchMove}
|
||||
onTouchend={onTouchEnd}
|
||||
onTouchcancel={onTouchEnd}
|
||||
|
7
packages/vant/src/vue-tsx-shim.d.ts
vendored
7
packages/vant/src/vue-tsx-shim.d.ts
vendored
@ -12,5 +12,12 @@ declare module 'vue' {
|
||||
onTouchmove?: EventHandler;
|
||||
onTouchstart?: EventHandler;
|
||||
onTouchcancel?: EventHandler;
|
||||
onTouchmovePassive?: EventHandler;
|
||||
onTouchstartPassive?: EventHandler;
|
||||
}
|
||||
|
||||
interface HTMLAttributes {
|
||||
onTouchmovePassive?: EventHandler;
|
||||
onTouchstartPassive?: EventHandler;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user