Files
hht-tongbo/components/NavBar.vue
2022-10-10 19:58:07 +08:00

28 lines
372 B
Vue

<template>
<view class="header">
<text class="icon-back"></text>
<text></text>
<text class="icon-home"></text>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="stylus">
@import '@/common/style/mixin.styl';
.header
_fj()
position fixed
_wh(100%, 86rpx)
background-color $red
z-index 100
</style>