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

14 lines
258 B
Vue

<template>
<tiny-scroll-text text="设置 text 自定义滚动的文本内容"></tiny-scroll-text>
</template>
<script lang="jsx">
import { ScrollText } from '@opentiny/vue'
export default {
components: {
TinyScrollText: ScrollText
}
}
</script>