1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| <template>
| <div :class="['content-scroll-view', { hasPaddingTop }]">
| <slot />
| </div>
| </template>
|
| <script setup lang="ts">
| defineOptions({
| name: 'ContentScrollView',
| });
|
| type Props = {
| hasPaddingTop?: boolean;
| allHeight?: boolean;
| paddingH?: boolean;
| };
|
| const props = withDefaults(defineProps<Props>(), {
| hasPaddingTop: false,
| allHeight: false,
| paddingH: true,
| });
| </script>
|
| <style lang="scss" scoped>
| @use '@/style/common.scss' as *;
|
| .content-scroll-view {
| overflow-y: auto;
| padding: 10px 14px 0;
| flex: 1;
| min-height: 0;
| }
| </style>
|
|