首页 > 其他分享 >【element-plus】Table表格横向滚动条显示不正确解决办法

【element-plus】Table表格横向滚动条显示不正确解决办法

时间:2023-05-22 19:57:38浏览次数:40  
标签:解决办法 表格 element 滚动条 plus Table bug 属性

滚动条bug展示如下:

image

造成bug原因排查:

由于对Table表格进行了二次封装,传递 props 属性时,传递了 align 属性,代码实现如下图:
image

解决办法

删除 align 属性,滚动条样式正常回显


在二次封装组件时,需要保证组件属性的输入和透出,尽量避免不必要的bug

标签:解决办法,表格,element,滚动条,plus,Table,bug,属性
From: https://www.cnblogs.com/optre/p/17421562.html

相关文章

  • //#ifdef __cplusplus extern "C" 含义
    #ifdef__cplusplusextern"C"{#endif#import<UIKit/UIKit.h>@interfaceViewController:UIViewController@property(nonatomic,readonly)UIView*headView;@end//#ifdef__cplusplusextern"C"{#endif//一段代码#ifdef__cplu......
  • 【cpluscplus教程翻译】Classes (II)
    操作符重载本质上,类就是在C++代码里定义了新的类型,在代码中,类型不仅用来构造和赋值,还可以用操作符进行运算,考虑基础类型的加减乘除inta,b,c;a=b+c;上面这个例子用了加法操作符和赋值操作符,对于基础类型,这些操作的含义非常显而易见且无歧义,但是对自定义类型来说,不见得......
  • MyBatis-Plus 可视化代码生成器来啦,让你的开发效率大大提速!!
    前言在基于Mybatis的开发模式中,很多开发者还会选择Mybatis-Plus来辅助功能开发,以此提高开发的效率。虽然Mybatis也有代码生成的工具,但Mybatis-Plus由于在Mybatis基础上做了一些调整,因此,常规的生成工具生成的代码还有一些不太符合预期。而且对于多数据库的支持不是很好。因此,我们......
  • Failed to execute 'setSelectionRange' on 'HTMLInputElement'
    jcubic commented on7Jan2016WhenIusenumberinputI'vegoterrorinGoogleChromeUncaughtInvalidStateError:Failedtoexecute'setSelectionRange'on'HTMLInputElement':Theinputelement'stype('number')......
  • 【Element-UI】时间/日期选择器选择禁用当前之前(之后)时间
    01.日期选择<template><div><el-date-pickerformat="yyyy-MM-dd"value-format="yyyy-MM-dd"type="date"placeholder="请选择日期"v-model="dayDate":pic......
  • Revit二次开发实战04(元素搜集过滤器FilteredElementCollector)
    Revit二次开发实战 FilteredElementCollector元素搜集过滤器1、创建搜集器FilteredElementCollector(Document);搜集文档中所有元素;FilteredElementCollector(Document,List<ElementId>);在指定id集合中搜集;FilteredElementCollector(Document,ElementIdviewId);在......
  • value_plusargs和.get_arg_value
    https://www.cnblogs.com/jiang-ic/p/10579416.htmlprogramautomatictest;importuvm_pkg::*;classhello_worldextendsuvm_test;uvm_cmdline_processorclp;intarg_value;stringarg;`uvm_component_utils(hello_wor......
  • 实现 React 简易版 createElement 和 render 方法
    前言在React中,我们都知道可以写jsx代码会被编译成真正的DOM插入到要显示的页面上。这具体是怎么实现的,今天我们就自己动手做一下。实现createElement方法这个方法平时开发我们并不会用到,因为它是经babel编译后的代码,我们新建一个React项目,index.js最简单的代码结构如......
  • Mybatisplus3.5.1+shardingsphere-jdbc5.1.1分表
    注意使用雪花ID的话,查询ID时候必须使用long类型的ID,不要使用MP自带的默认的Serializable类型。否则会提示分片主键id数据类型和分片算法不匹配Inlineshardingalgorithmsexpressionxxxandshardingcolumnxxnotmatch错误。。。导入依赖<!--sharding-jdbc分库分表-->......
  • Mybatis Plus 源码分析
    ====================================MybatisPlus源码分析入口:com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration#afterPropertiesSetcom.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration#sqlSessionFactorycom.baomidou.mybatisplus.a......