mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 10:22:44 +08:00
feat(Cascader): add ellipsis prop support (#5806)
This commit is contained in:
parent
1a8351387a
commit
db1c0ce662
@ -210,6 +210,7 @@ Page({
|
|||||||
| active-color | 选中状态的高亮颜色 | _string_ | `#1989fa` |
|
| active-color | 选中状态的高亮颜色 | _string_ | `#1989fa` |
|
||||||
| swipeable | 是否开启手势左右滑动切换 | _boolean_ | `false` |
|
| swipeable | 是否开启手势左右滑动切换 | _boolean_ | `false` |
|
||||||
| closeable | 是否显示关闭图标 | _boolean_ | `true` |
|
| closeable | 是否显示关闭图标 | _boolean_ | `true` |
|
||||||
|
| ellipsis `v1.11.7` | 是否省略过长的标题文字, 关闭后文字过长会出现横向滚动 | _boolean_ | `true` |
|
||||||
| show-header | 是否展示标题栏 | _boolean_ | `true` |
|
| show-header | 是否展示标题栏 | _boolean_ | `true` |
|
||||||
| close-icon | 关闭图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/icon) | _string_ | `cross` |
|
| close-icon | 关闭图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/icon) | _string_ | `cross` |
|
||||||
| field-names | 自定义 `options` 结构中的字段 | _CascaderFieldNames_ | `{ text: 'text', value: 'value', children: 'children' }` |
|
| field-names | 自定义 `options` 结构中的字段 | _CascaderFieldNames_ | `{ text: 'text', value: 'value', children: 'children' }` |
|
||||||
|
@ -45,6 +45,10 @@ VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
|
ellipsis: {
|
||||||
|
type: Boolean,
|
||||||
|
value: true,
|
||||||
|
},
|
||||||
showHeader: {
|
showHeader: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
color="{{ activeColor }}"
|
color="{{ activeColor }}"
|
||||||
border="{{ false }}"
|
border="{{ false }}"
|
||||||
swipeable="{{ swipeable }}"
|
swipeable="{{ swipeable }}"
|
||||||
|
ellipsis="{{ ellipsis }}"
|
||||||
bind:click="onClickTab"
|
bind:click="onClickTab"
|
||||||
>
|
>
|
||||||
<van-tab
|
<van-tab
|
||||||
|
Loading…
x
Reference in New Issue
Block a user