mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-27 05:00:48 +08:00
1.7 KiB
1.7 KiB
Fixed header and column
A Solution for displaying large amounts of data with long columns.
Note that:
Specify the width of columns if header and cell do not align properly. If specified width is not working or have gutter between columns, please try to leave one column at least without width to fit fluid layout, or make sure no long word to break table layout.A fixed value which is greater than table width for
scroll-x
is recommended. The sum of unfixed columns should not greater thanscroll-x
.
<n-data-table
ref="table"
:columns="columns"
:data="data"
:pagination="pagination"
max-height="250px"
:scroll-x="1800"
/>
const columns = [
{
title: 'Name',
key: 'name',
width: 200,
fixed: 'left'
},
{
title: 'Age',
key: 'age',
width: 100
},
{
title: 'Row',
key: 'row',
render (h, row, index) {
return h('span', ['row ', index])
}
},
{
title: 'Row1',
key: 'row1',
render(h, row, index) {
return h('span', ['row ', index])
}
},
{
title: 'Row2',
key: 'row2',
render(h, row, index) {
return h('span', ['row ', index])
}
},
{
title: 'Address',
key: 'address',
width: 200,
fixed: 'right'
}
]
const data = Array.apply(null, { length: 46 }).map((_, index) => ({
key: index,
name: `Edward King ${index}`,
age: 32,
address: `London, Park Lane no. ${index}`
}))
export default {
data() {
return {
data,
columns
}
},
computed: {
pagination () {
return { pageSize: 10 }
}
},
methods: {
sendMail(rowData) {
this.$NMessage.info('send mail to ' + rowData.name)
}
}
}