# Fixed header and column A Solution for displaying large amounts of data with long columns. Note that: If you have set fixed column, you should also set `scroll-x`. ```html ``` ```js 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) } } } ```