el-scrollbar 用法
官方文档没有写出来。记录下!!!
<template>
<div>
<h2>list:</h2>
<el-scrollbar
wrap-style="font-weight:bold" // 这个貌似不起作用?一般不用
wrap-class="list" // 增加class
view-style="font-weight:bold;color:blue"// 增加行内样式,一般不用
view-class="view-box" // 增加class
:native="false"
>
<div v-for="value in num" :key="value">
{{ value }}
</div>
</el-scrollbar>
</div>
</template>
<script>
export default {
name: "Home",
data() {
return {
num: 20,
};
},
};
</script>
<style lang="scss">
/*展示列表的区域,超过200px出现滚动条*/
.list {
max-height: 200px;
}
</style>
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 ZengXPang's blog!
评论