Files
backend/mobile-web/src/components/page/notice.vue
2019-03-04 15:28:16 +08:00

30 lines
342 B
Vue

<template>
<NoticeBar
:text="data.value"
:background="data.background"
:color="data.color"
/>
</template>
<script>
import { NoticeBar } from "vant";
export default {
name:'notice',
components:{
NoticeBar
},
props:{
data:Object
},
computed:{
}
}
</script>
<style>
</style>