table 根据窗口缩放,自适应

element-plus中,直接应用在页面样式上,


::v-deep .el-table{
    width: 100%;
}
::v-deep .el-table__header-wrapper table,::v-deep .el-table__body-wrapper table{
    width: 100% !important;
}
::v-deep .el-table__body,::v-deep .el-table__footer,::v-deep .el-table__header{
    table-layout: auto !important;
}

效果图:
table 根据窗口缩放,自适应_第1张图片

你可能感兴趣的:(vue.js,elementui,javascript)