tiny-vue/examples/docs/resources/pc/demo/scroll-text/hover-stop.vue

14 lines
288 B
Vue

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