22 lines
296 B
Vue
22 lines
296 B
Vue
<template>
|
|
<view class="page-sticky-header">
|
|
<slot />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PageStickyHeader',
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.page-sticky-header {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
background: #f9fafb;
|
|
padding-bottom: 8rpx;
|
|
}
|
|
</style>
|