Hide Scrollbar in el-scrollbar: Element UI
The el-scrollbar component is a scrollbar component in element-ui. To hide the scrollbar, set the attribute v-bind:hide to true. Example is shown below:
<el-scrollbar v-bind:hide="true">
<!-- 内容区域 -->
</el-scrollbar>
By setting the v-bind:hide attribute to true, you can hide the scrollbar of the el-scrollbar component.