设置element-ui Table滚动条样式
1.首先,安装包npminstallperfect-scrollbar--save2.引入//引入核心框架import Vue from 'vue';//插件的包import PerfectScrollbar from 'perfect-scrollbar';//对应的cssimport "perfect-scrollbar/css/perfect-scro...
·
1.首先,安装包
npm install perfect-scrollbar --save
2.引入
//引入核心框架
import Vue from 'vue';
//插件的包
import PerfectScrollbar from 'perfect-scrollbar';
//对应的css
import "perfect-scrollbar/css/perfect-scrollbar.css";
3.封装自定义指令(v_scrollBar)
/**
* @description 为自定义滚动条全局注入自定义指令。自动判断该更新PerfectScrollbar还是创建它
* @param {Element} el - 必填。dom元素
*/
const el_scrollBar = (el) => {
//在元素上加点私货,名字随便取,确保不会和已有属性重复即可,我取名叫做_ps_
if (el._ps_ instanceof PerfectScrollbar) {
el._ps_.update();
} else {
//el上挂一份属性
el._ps_ = new PerfectScrollbar(el, { suppressScrollX: true });
}
};
Vue.directive("scrollBar",{
inserted(el, binding){
const { value } = binding;
if(value === "你喜欢的标记"){
el = el.querySelector(".el-table__body-wrapper");
if(!el){
return console.warn("未发现className为el-table__body-wrapper的dom");
}
}
const rules = ["fixed", "absolute", "relative"];
if (!rules.includes(window.getComputedStyle(el, null).position)) {
console.error(`perfect-scrollbar所在的容器的position属性必须是以下之一:${rules.join("、")}`)
}
el_scrollBar(el);
},
componentUpdated(el, binding, vnode) {
const { value } = binding;
if (value === "你喜欢的标记") {
el = el.querySelector(".el-table__body-wrapper");
if(!el){
return console.warn("未发现className为el-table__body-wrapper的dom");
}
}
vnode.context.$nextTick(
() => {
try {
el_scrollBar(el);
} catch (error) {
console.error(error);
}
}
)
},
})
4.使用
a. 直接在组件上添加指令,设置指令为参数为 “你喜欢的标记”
<el-table
:data="tableData"
style="width: 100%"
height="250"
el_scrollBar="你喜欢的标记">
...
</el-table>
b. 设置容器css
.el-table{
// 解决table组件内容滚动时页面滚动条同步滚动
overflow: auto;
// 必须设置
position: relative;
}
最后,还要注意一下兼容性
据perfect-scrollbar官网描述。它对ie的支持仅完美支持ie11,然后ie10勉强能用
那么vue是支持到ie9的。我们至少要让他在ie9上能用
那么现在的这个状态直接在ie9上试试。应该会得到一个类似于
Uncaught TypeError: Cannot read property 'add' of undefined
的报错。
npm install classlist-polyfill --save
然后在引入perfect-scrollbar包之前(其实在它被实例化之前就行)引入它
//引入核心框架
import Vue from 'vue';
//classList的垫片
import "classlist-polyfill";
//插件的包
import PerfectScrollbar from 'perfect-scrollbar';
//对应的css
import "perfect-scrollbar/css/perfect-scrollbar.css";
转载至
https://segmentfault.com/q/1010000016366942?sort=created
https://segmentfault.com/a/1190000014821207
作者:阿蛇
更多推荐
已为社区贡献11条内容
所有评论(0)