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

20 lines
288 B
Vue

<template>
<tiny-scroll-text class="scrollclass"></tiny-scroll-text>
</template>
<script>
import { ScrollText } from '@opentiny/vue'
export default {
components: {
TinyScrollText: ScrollText
}
}
</script>
<style scoped>
.scrollclass {
background-color: #b8d9f9;
}
</style>