mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
6d73349cc5
* fix(components): [button] link style and docs * fix(components): [button] link style Co-authored-by: xiaochenchen <xiaochen.chen@igg.com>
64 lines
1.6 KiB
Vue
64 lines
1.6 KiB
Vue
<template>
|
|
<el-table :data="tableData" style="width: 100%">
|
|
<el-table-column fixed prop="date" label="Date" width="150" />
|
|
<el-table-column prop="name" label="Name" width="120" />
|
|
<el-table-column prop="state" label="State" width="120" />
|
|
<el-table-column prop="city" label="City" width="120" />
|
|
<el-table-column prop="address" label="Address" width="600" />
|
|
<el-table-column prop="zip" label="Zip" width="120" />
|
|
<el-table-column fixed="right" label="Operations" width="120">
|
|
<template #default>
|
|
<el-button link type="primary" size="small" @click="handleClick"
|
|
>Detail</el-button
|
|
>
|
|
<el-button link type="primary" size="small">Edit</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const handleClick = () => {
|
|
console.log('click')
|
|
}
|
|
|
|
const tableData = [
|
|
{
|
|
date: '2016-05-03',
|
|
name: 'Tom',
|
|
state: 'California',
|
|
city: 'Los Angeles',
|
|
address: 'No. 189, Grove St, Los Angeles',
|
|
zip: 'CA 90036',
|
|
tag: 'Home',
|
|
},
|
|
{
|
|
date: '2016-05-02',
|
|
name: 'Tom',
|
|
state: 'California',
|
|
city: 'Los Angeles',
|
|
address: 'No. 189, Grove St, Los Angeles',
|
|
zip: 'CA 90036',
|
|
tag: 'Office',
|
|
},
|
|
{
|
|
date: '2016-05-04',
|
|
name: 'Tom',
|
|
state: 'California',
|
|
city: 'Los Angeles',
|
|
address: 'No. 189, Grove St, Los Angeles',
|
|
zip: 'CA 90036',
|
|
tag: 'Home',
|
|
},
|
|
{
|
|
date: '2016-05-01',
|
|
name: 'Tom',
|
|
state: 'California',
|
|
city: 'Los Angeles',
|
|
address: 'No. 189, Grove St, Los Angeles',
|
|
zip: 'CA 90036',
|
|
tag: 'Office',
|
|
},
|
|
]
|
|
</script>
|