web-africa-h5/components/header.vue

31 lines
463 B
Vue

<template>
<view style="position: relative;">
<view class="status_bar" :style="bcolor?'background-color:'+bcolor+';':''"></view>
<view class="top_view" :style="bcolor?'background-color:'+bcolor+';':''"></view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
props: ['bcolor'],
watch:{
'bcolor':function(n,o){
if(n!=o){
console.log(n)
}
}
}
}
</script>
<style>
.s{
flex-shrink: 0;
}
</style>