# el-table-horizontal-scroll **Repository Path**: mizuka/el-table-horizontal-scroll ## Basic Information - **Project Name**: el-table-horizontal-scroll - **Description**: el-table awlays show horizontal-scroller on bottom - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 3 - **Created**: 2022-02-09 - **Last Updated**: 2024-01-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # el-table-horizontal-scroll > 让el-table支持横向滚动条一直在底部显示 ## 使用方法 ### 安装 ``` npm install el-table-horizontal-scroll ``` ### 注册全局指令 ``` import horizontalScroll from 'el-table-horizontal-scroll' Vue.use(horizontalScroll) ``` ### 局部指令 ``` import horizontalScroll from 'el-table-horizontal-scroll' export default { directives: { horizontalScroll } } ``` ### 使用 ``` ```