Files
vxe-table/examples/views/table/grid/Group.vue
xuliangzhan 94c1a651b3 更新文档
2019-12-15 18:02:26 +08:00

100 lines
2.3 KiB
Vue

<template>
<div>
<p class="tip">分组表头</p>
<vxe-grid
border
stripe
resizable
height="500"
:columns="tableColumn"
:data="tableData"></vxe-grid>
<p class="demo-code">{{ $t('app.body.button.showCode') }}</p>
<pre>
<code class="xml">{{ demoCodes[0] }}</code>
<code class="javascript">{{ demoCodes[1] }}</code>
</pre>
</div>
</template>
<script>
import hljs from 'highlight.js'
export default {
data () {
return {
tableColumn: [
{ type: 'seq', width: 50 },
{
title: '基本信息',
children: [
{ field: 'name', title: 'Name' },
{
title: '其他信息',
children: [
{ field: 'rate', title: 'Rate' },
{ field: 'age', title: 'Age' }
]
},
{ field: 'sex', title: 'Sex' }
]
},
{ field: 'address', title: 'Address', showOverflow: true }
],
tableData: [],
demoCodes: [
`
<vxe-grid
border
stripe
resizable
height="500"
:columns="tableColumn"
:data="tableData"></vxe-grid>
`,
`
export default {
data () {
return {
tableColumn: [
{ type: 'seq', width: 50 },
{
title: '基本信息',
children: [
{ field: 'name', title: 'Name' },
{
title: '其他信息',
children: [
{ field: 'rate', title: 'Rate' },
{ field: 'age', title: 'Age' }
]
},
{ field: 'sex', title: 'Sex' }
]
},
{ field: 'address', title: 'Address', showOverflow: true }
],
tableData: []
}
},
created () {
this.tableData = window.MOCK_DATA_LIST.slice(0, 50)
}
}
`
]
}
},
created () {
this.tableData = window.MOCK_DATA_LIST.slice(0, 50)
},
mounted () {
Array.from(this.$el.querySelectorAll('pre code')).forEach((block) => {
hljs.highlightBlock(block)
})
}
}
</script>