You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
418 B

<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>