Commit 386a8466 authored by spademan's avatar spademan

Table: 在type="index"如果设置了label 优先显示label

parent 03a60995
...@@ -35,7 +35,7 @@ const forced = { ...@@ -35,7 +35,7 @@ const forced = {
}, },
index: { index: {
// headerTemplate: function(h) { return <div>#</div>; }, // headerTemplate: function(h) { return <div>#</div>; },
headerTemplate: function(h) { return <div>{ this.$options.propsData.columns[0].label ? this.$options.propsData.columns[0].label : '#' }</div>; }, headerTemplate: function(h, label) { return <div>{ label || '#' }</div>; },
template: function(h, { row, $index }) { return <div>{ $index + 1 }</div>; }, template: function(h, { row, $index }) { return <div>{ $index + 1 }</div>; },
sortable: false sortable: false
}, },
......
...@@ -30,7 +30,7 @@ export default { ...@@ -30,7 +30,7 @@ export default {
{ {
[ [
column.headerTemplate column.headerTemplate
? column.headerTemplate.call(this._renderProxy, h) ? column.headerTemplate.call(this._renderProxy, h, column.label)
: <div>{ column.label }</div>, : <div>{ column.label }</div>,
column.sortable column.sortable
? <div class="caret-wrapper"> ? <div class="caret-wrapper">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment