tiny-vue_version0/examples/sites/demos/pc/app/scroll-text/hover-stop.vue

14 lines
277 B
Vue

<template>
<tiny-scroll-text :hover-stop="true">设置 hover-stop false 鼠标悬停后不会停止滚动</tiny-scroll-text>
</template>
<script>
import { ScrollText } from '@opentiny/vue'
export default {
components: {
TinyScrollText: ScrollText
}
}
</script>