vuescrollnext
v1.0.3
Published
vue3 plugin
Downloads
3
Readme
vuescrollnext
一个支持 vue3 的scrollbar
1.安装
npm install vuescrollnext --save
2.使用
<el-table
v-scrollbar="{
container: '.logBody>.el-table__body-wrapper',
'ps-y-reach-end': testEvent,
psScrollX: testEvent,
}"
ref="logTableREF"
:data="tableData"
:stripe="false"
class="logBody"
:border="false"
tooltip-effect="light"
style="width: 100%"
height="450px"
@selection-change="handleSelectionChange"
> </el-table>
// setup
const testEvent = ()=>{}
return {
testEvent
}
不需要参数的情况,走默认配置 或者
<div v-scrollbar></div>
又或者
<div v-scrollbar=".logBody>.el-table__body-wrapper"></div>