jhzh
2025-04-27 c6c703c80be3ee1f1f2d28f820c4d3b730e17040
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
    <view class="van-notice-bar d-flex p-x-md p-y-xs">
        <slot class="vant-icon-index van-notice-bar__left-icon" name="left-icon"></slot>
        <view class="van-notice-bar__wrap flex-fill">
            <slot class="van-notice-bar__content"></slot>
        </view>
        <slot name="right-icon"></slot>
    </view>
</template>
<script>
export default {
    name:'v-notice-bar',
    data(){
        return {}
    }
}
</script>