@@ -154,6 +154,7 @@ onMounted(() => {
class="scrollbar__wrap"
:style="{ height: props.height, maxHeight: props.maxHeight }"
ref="scrollWrap"
+ @scroll="handleScroll"
>
@@ -206,6 +207,9 @@ onMounted(() => {
.scrollbar__wrap {
overflow: auto;
scrollbar-width: none;
+ &::-webkit-scrollbar {
+ display: none;
+ }
}
.scrollbar__view {
width: max-content;