mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
17 lines
298 B
Vue
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>
|