tiny-vue/examples/sites/demos/pc/app/scroll-text/slots-composition-api.vue

12 lines
233 B
Vue

<template>
<div>
<tiny-scroll-text>
<span>通过插槽设置滚动的文本内容</span>
</tiny-scroll-text>
</div>
</template>
<script setup>
import { ScrollText as TinyScrollText } from '@opentiny/vue'
</script>