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

14 lines
257 B
Vue

<template>
<tiny-scroll-text :time="10">设置 time 自定义滚动所用的时间为 10s</tiny-scroll-text>
</template>
<script>
import { ScrollText } from '@opentiny/vue'
export default {
components: {
TinyScrollText: ScrollText
}
}
</script>