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

问题:

代码片段:

bash 复制代码
<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/>

bash 复制代码
<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 小时前
Vue项目 bug 解决
前端·vue.js·bug
我自纵横20233 小时前
事件处理程序
开发语言·前端·javascript·css·json·ecmascript
我是小路路呀3 小时前
css 文字换行每一个字渐变
前端·css
胡八一4 小时前
使用 Less 实现 PC 和移动端样式适配
前端·css·less
阿丽塔~5 小时前
Vue2/Vue3异同整理
vue.js
七月的尾巴←_←5 小时前
Java8+Spring Boot + Vue + Langchain4j 实现阿里云百炼平台 AI 流式对话对接
vue.js·spring boot·阿里云
CsharpDev-奶豆哥6 小时前
使用JS+HTML+CSS编写提词器实例
javascript·css·html
土豆丶杨6 小时前
vue3+electron 桌面应用初始化
javascript·vue.js·electron
气π8 小时前
【Vue-组件】学习笔记
vue.js·笔记·学习
JohnsonXin8 小时前
怎么使用vue3实现一个优雅的不定高虚拟列表
前端·javascript·css·html5