1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-27 20:06:36 +08:00

17 lines
298 B
Vue

<template>
<div class="notice-bar-container" style="width: 100px;">
<van-notice-bar :speed="speed" :text="text" :mode="mode" :delay="delay" />
</div>
</template>
<script>
export default {
props: {
speed: Number,
text: String,
mode: String,
delay: Number
}
};
</script>