vue中table内容和lable对不齐解决方案

问题:

在这里插入图片描述
代码片段:

<template>
    <el-table :data="tableData" stripe style="width: 100%">

        <el-table-column prop="title" label="标题" width="80px" />
        <el-table-column prop="name" label="内容" width="80px" />
        <el-table-column prop="address" label="发布人" width="80px" />
        <el-table-column prop="date" label="发布时间" width="100px" />

        <el-table-column label="操作" width="200px">
            <template #default="scope">
                <el-button type="primary" size="small" @click="handleEdit(scope.row)">编辑</el-button>
                <el-button type="danger" size="small" @click="handleDelete(scope.row)">删除</el-button>
            </template>
        </el-table-column>
    </el-table>
</template>

解决问题:

1.添加 <el-table-column/>

<template>
    <el-table :data="tableData" stripe style="width: 100%">
        <el-table-column />
        <el-table-column prop="title" label="标题" width="80px" />
        <el-table-column prop="name" label="内容" width="80px" />
        <el-table-column prop="address" label="发布人" width="80px" />
        <el-table-column prop="date" label="发布时间" width="100px" />

        <el-table-column label="操作" width="200px">
            <template #default="scope">
                <el-button type="primary" size="small" @click="handleEdit(scope.row)">编辑</el-button>
                <el-button type="danger" size="small" @click="handleDelete(scope.row)">删除</el-button>
            </template>
        </el-table-column>
    </el-table>
</template>

效果:
在这里插入图片描述

2.给table添加:display: table-cell;

效果:
在这里插入图片描述

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-14 07:48:03       67 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-14 07:48:03       71 阅读
  3. 在Django里面运行非项目文件

    2024-07-14 07:48:03       58 阅读
  4. Python语言-面向对象

    2024-07-14 07:48:03       69 阅读

热门阅读

  1. 开源科学工程技术软件

    2024-07-14 07:48:03       17 阅读
  2. 2060:【例1.1】计算机输出

    2024-07-14 07:48:03       24 阅读
  3. Debian ip6tables allow IPv6 traffic on TCP port 18917

    2024-07-14 07:48:03       26 阅读
  4. ubuntu 物理内存爆炸而不使用虚拟内存的问题

    2024-07-14 07:48:03       20 阅读
  5. Unity宏和编辑器

    2024-07-14 07:48:03       21 阅读
  6. (C++栈与队列02) 栈的应用 单调队列

    2024-07-14 07:48:03       27 阅读
  7. 基于物联网的智慧校园建设与发展

    2024-07-14 07:48:03       32 阅读
  8. DNS是什么

    2024-07-14 07:48:03       21 阅读
  9. Bug及优化

    2024-07-14 07:48:03       19 阅读