mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
feat(components): [el-table] support tableLayout (#5860)
* feat(components): [el-table] support tableLayout * fix: typo * fix: remove unused var * fix: optimize code * fix: typo
This commit is contained in:
40
docs/examples/table/table-layout.vue
Normal file
40
docs/examples/table/table-layout.vue
Normal file
@@ -0,0 +1,40 @@
|
||||
<template>
|
||||
<el-radio-group v-model="tableLayout">
|
||||
<el-radio-button label="fixed"></el-radio-button>
|
||||
<el-radio-button label="auto"></el-radio-button>
|
||||
</el-radio-group>
|
||||
<el-table :data="tableData" :table-layout="tableLayout">
|
||||
<el-table-column prop="date" label="Date" />
|
||||
<el-table-column prop="name" label="Name" />
|
||||
<el-table-column prop="address" label="Address" />
|
||||
</el-table>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { ref } from 'vue'
|
||||
|
||||
const tableLayout = ref('fixed')
|
||||
|
||||
const tableData = [
|
||||
{
|
||||
date: '2016-05-03',
|
||||
name: 'Tom',
|
||||
address: 'No. 189, Grove St, Los Angeles',
|
||||
},
|
||||
{
|
||||
date: '2016-05-02',
|
||||
name: 'Tom',
|
||||
address: 'No. 189, Grove St, Los Angeles',
|
||||
},
|
||||
{
|
||||
date: '2016-05-04',
|
||||
name: 'Tom',
|
||||
address: 'No. 189, Grove St, Los Angeles',
|
||||
},
|
||||
{
|
||||
date: '2016-05-01',
|
||||
name: 'Tom',
|
||||
address: 'No. 189, Grove St, Los Angeles',
|
||||
},
|
||||
]
|
||||
</script>
|
||||
Reference in New Issue
Block a user