表头超级宽,而且网上的方法试过了之后都没有什么用,有人直到这是什么原因吗?
<template>
<el-table
:data="tableData.filter(data => !search || data.name.toLowerCase().includes(search.toLowerCase()))"
style="width: 100%;"
row-style="height:80px"
class="eltable">
<el-table-column
label="Date"
prop="date">
</el-table-column>
</el-table>
</template>
<script>
import 'element-ui/lib/theme-chalk/index.css'
export default {
name: "test",
data() {
return {
tableData: [{
date: '2016-05-02',
}, {
date: '2016-05-04',
}, {
date: '2016-05-01',
}, {
date: '2016-05-03',
}],
search: ''
}
},
methods: {
handleEdit(index, row) {
console.log(index, row);
},
handleDelete(index, row) {
console.log(index, row);
}
},
}
</script>
<style scoped>
</style>
你可以查看表头的样式,比如样式是 class=“table_head” 你可以使用