Are you an LLM? You can read better optimized documentation at /stk-table-vue/en/main/table/basic/scrollbar.md for this page in Markdown format
Scrollbar
Style
The component uses native scrollbar by default and relies entirely on browser scrollbar styles.
If you need to customize scrollbar styles, you can do so through CSS. Add the class to the StkTable node.
vue
<StkTable class="scrollbar"></StkTable>css
.scrollbar::-webkit-scrollbar {
/* ..... */
}The following example uses ::-webkit-scrollbar to style the scrollbar.
loading
Effective in browsers with Blink or webkit engines (Chrome, Safari, Opera) (refer to ::-webkit-scrollbar | MDN).
Built-in Scrollbar (^0.9.0)
Built-in DOM-implemented scrollbar, enabled via props.scrollbar.
Can solve scrolling white screen issues.
ts
<StkTable
scrollbar
></StkTable>
<StkTable
:scrollbar="{ width: 10, height: 10 }"
></StkTable>loading
API Reference
ScrollbarOptions Type
typescript
interface ScrollbarOptions {
/** Whether to enable scrollbar */
enabled?: boolean;
/** Vertical scrollbar width default: 8 */
width?: number;
/** Horizontal scrollbar height default: 8 */
height?: number;
/** Scrollbar thumb minimum width default: 20 */
minWidth?: number;
/** Scrollbar thumb minimum height default: 20 */
minHeight?: number;
}Style Customization
You can customize the appearance of the scrollbar using CSS variables:
css
.stk-table {
--scrollbar-thumb-color: #c1c1d7;
--scrollbar-thumb-hover-color: #a8a8c1;
--scrollbar-track-color: transparent;
}
/* Dark theme */
.stk-table.dark {
--scrollbar-thumb-color: rgba(93, 96, 100, .9);
--scrollbar-thumb-hover-color: #727782;
}Key Scroll
| Key | Description | Function |
|---|---|---|
ArrowUp | Up arrow key | Scroll up one row |
ArrowDown | Down arrow key | Scroll down one row |
ArrowLeft | Left arrow key | Scroll left 50px |
ArrowRight | Right arrow key | Scroll right 50px |
PageUp | -- | Scroll up one page |
PageDown | -- | Scroll down one page |
Home | -- | Scroll to top |
End | -- | Scroll to bottom |