vue-dragscroll icon indicating copy to clipboard operation
vue-dragscroll copied to clipboard

scroll-blocking

Open andrejsharapov opened this issue 6 years ago • 0 comments

Conslole message:

Added non-passive event listener to a scroll-blocking 'touchstart' event. Consider marking event handler as 'passive' to make the page more responsive.

Tell me what is wrong?

router/index.js

import VueDragscroll from "vue-dragscroll";
Vue.use(VueDragscroll);

App.vue

<template lang="pug">
.content-wrapper
	...
	TimeLine(:timeline="timeline")
	...
</template>

TimeLine.vue

<template lang="pug">
.timeline.grab-bing(v-dragscroll.y="true")
	...
	...
</template>

andrejsharapov avatar Dec 15 '19 14:12 andrejsharapov