dykj-outsource-12123/uni_modules/uni-ui/components/uni-status-bar/uni-status-bar.vue

26 lines
446 B
Vue
Raw Normal View History

2024-06-26 09:12:03 +08:00
<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
}
}
}
</script>
<style lang="scss" scoped>
.uni-status-bar {
width: 750rpx;
height: 20px;
// height: var(--status-bar-height);
}
</style>