29 lines
493 B
Vue
29 lines
493 B
Vue
<template>
|
|
<view :style="{ height: statusBarHeight }" class="uni-status-bar">
|
|
<slot />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px'
|
|
export default {
|
|
name: 'UniStatusBar',
|
|
data() {
|
|
return {
|
|
statusBarHeight: statusBarHeight
|
|
}
|
|
},
|
|
created() {
|
|
// console.log(statusBarHeight)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.uni-status-bar {
|
|
display: block;
|
|
width: 100%;
|
|
height: 20px;
|
|
height: var(--status-bar-height);
|
|
}
|
|
</style> |