diff --git a/nuxt.config.js b/nuxt.config.js index 9b40a8b..c606ed9 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -10,6 +10,7 @@ function appendLoader (config, loader) { module.exports = { target: 'static', + telemetry: false, /** * Headers of the page diff --git a/one/docs/components/column.md b/one/docs/components/column.md index 101021e..249a657 100644 --- a/one/docs/components/column.md +++ b/one/docs/components/column.md @@ -20,6 +20,7 @@ | `sortable` | `boolean=` | `false` | [^sortable] | | `align` | `string=` | - | 内容对齐方式,支持 `left`/`center`/`right`。 | | `span` | `function(number): Object=` | | [^span] | +| `desc` | `string` | - | 表头描述。 | ^^^sortable 本列是否支持排序。 @@ -45,6 +46,7 @@ | `foot` | [^slot-foot] | | `default` | [^scoped-slot-default] | | `sub-row` | [^scoped-slot-sub-row] | +| `desc` | [^scoped-slot-desc] | ^^^slot-foot 列脚区域。 @@ -73,3 +75,7 @@ 如果所属的 `Table` 组件定义了插槽 `sub-row`,单独列的 `sub-row` 将被覆盖。 ::: ^^^ + +^^^scoped-slot-desc +表头描述。提供 `close` 函数,用于关闭展现描述内容的容器。使用此插槽时会覆盖 `Column` 的插槽 `desc` 内容。 +^^^ diff --git a/one/docs/components/table.md b/one/docs/components/table.md index c86e1a5..8968fd4 100644 --- a/one/docs/components/table.md +++ b/one/docs/components/table.md @@ -36,6 +36,12 @@ [[ demo src="/demo/table/expandable.vue" ]] +### 表头描述 + +使用 `desc` 属性或 `desc` 插槽来为表头增加描述信息。 + +[[ demo src="/demo/table/desc.vue" ]] + ## API ### 属性 diff --git a/one/docs/demo/table/desc.vue b/one/docs/demo/table/desc.vue new file mode 100644 index 0000000..ed00c0e --- /dev/null +++ b/one/docs/demo/table/desc.vue @@ -0,0 +1,93 @@ + + + + + + + + + {{ bid | currency }} + + + This is a description for bid. + close + + + + + + + + + +
This is a description for bid.