tj
2025-06-05 bba272999cc546f65781bf3d20245a3f819af67f
1
2
3
4
5
6
7
8
9
10
11
12
<template>
  <div class="wrapper"><slot></slot></div>
</template>
 
<style lang="scss" scoped>
.wrapper {
  position: sticky;
  top: 0;
  z-index: 9;
  background: #fff;
}
</style>