diff --git a/examples/sites/demos/pc/app/collapse/webdoc/collapse.js b/examples/sites/demos/pc/app/collapse/webdoc/collapse.js index c16c92ced..1de827a92 100644 --- a/examples/sites/demos/pc/app/collapse/webdoc/collapse.js +++ b/examples/sites/demos/pc/app/collapse/webdoc/collapse.js @@ -6,8 +6,10 @@ export default { 'demoId': 'basic-usage', 'name': { 'zh-CN': '基本用法', 'en-US': 'Basic Usage' }, 'desc': { - 'zh-CN': '
配置 name
属性作为每个 collapse-item
的唯一标志符,配置 v-model
设置当前激活的面板。默认情况下可以同时展开多个面板,这个例子默认展开了第一和第三个面板。
For details, see the following example.
Configure the name
attribute as the unique identifier for each collapse-item.
配置 name
属性作为每个 collapse-item
的唯一标志符,配置 v-model
设置当前激活的面板。默认情况下可以同时展开多个面板,这个例子默认展开了第一和第三个面板。
For details, see the following example.
Configure the name
attribute as the unique identifier for each collapse-item.
配置 accordion
属性为 true
后,折叠面板将展示手风琴效果,一次只允许展开一个面板。
After accordion
is set to true, the collapsed panel displays the accordion effect.
Configure v-model
to set the currently active panel. (In accordion mode, the binding value type must be string. Otherwise, the binding value type is array.)
配置 accordion
属性为 true
后,折叠面板将展示手风琴效果,一次只允许展开一个面板。
After accordion
is set to true, the collapsed panel displays the accordion effect.
Configure v-model
to set the currently active panel. (In accordion mode, the binding value type must be string. Otherwise, the binding value type is array.)
在 collapse-item
元素上配置 disabled
属性为 true 后,将禁用指定的折叠面板项。
When the disabled
attribute is set to true on the collapse-item
element, the specified collapse panel item is disabled.
在 collapse-item
元素上配置 disabled
属性为 true 后,将禁用指定的折叠面板项。
When the disabled
attribute is set to true on the collapse-item
element, the specified collapse panel item is disabled.
在 collapse-item
元素上配置 title
属性可以指定每个折叠面板项的标题。也可以通过 title
插槽的方式自定义面板标题,比如在标题后增加图标。
在 collapse-item
元素上配置 title-right
属性可以指定每个折叠面板项标题的右侧内容。也可以通过 title-right
插槽的方式自定义面板标题右侧内容,比如在标题右侧增加图标。
Configure the title
attribute on the collapse-item
element to specify the title of each collapse panel item. However, you can also customize the panel title by using the title
slot, for example, adding an icon before the title.
Configure the title-right
attribute on the collapse-item
element to specify the right side of each collapse panel item title. However, you can also customize the content on the right of the panel title by using the title-right
slot, for example, adding an icon to the right of the title.
在 collapse-item
元素上配置 title
属性可以指定每个折叠面板项的标题。也可以通过 title
插槽的方式自定义面板标题,比如在标题后增加图标。
在 collapse-item
元素上配置 title-right
属性可以指定每个折叠面板项标题的右侧内容。也可以通过 title-right
插槽的方式自定义面板标题右侧内容,比如在标题右侧增加图标。
Configure the title
attribute on the collapse-item
element to specify the title of each collapse panel item. However, you can also customize the panel title by using the title
slot, for example, adding an icon before the title.
Configure the title-right
attribute on the collapse-item
element to specify the right side of each collapse panel item title. However, you can also customize the content on the right of the panel title by using the title-right
slot, for example, adding an icon to the right of the title.
在 collapse-item
元素上可以通过 icon
插槽的方式自定义展开折叠 icon 图标。
On the collapse-item
element, you can customize the folding icon icon by using the icon
slot.
在 collapse-item
元素上可以通过 icon
插槽的方式自定义展开折叠 icon 图标。
On the collapse-item
element, you can customize the folding icon icon by using the icon
slot.
设置 before-close 属性,如果返回 false,将阻止面板的切换。
', - 'en-US': ':before-close event before closing the folding panel. In the method, return true/false indicates whether the folding panel can be closed.
' + 'en-US': + ':before-close event before closing the folding panel. In the method, return true/false indicates whether the folding panel can be closed.
' }, 'codeFiles': ['before-close.vue'] }, @@ -92,7 +103,7 @@ export default { }, { 'name': 'before-close', - 'type': '(item: object, activeNames: string | number | Array) => boolean', + 'type': '(item: Component, activeNames: string | number | Array) => boolean', 'defaultValue': '--', 'desc': { 'zh-CN': '阻止折叠面板切换', @@ -106,7 +117,8 @@ export default { 'defaultValue': '--', 'desc': { 'zh-CN': '当前激活的面板。如果是手风琴模式,绑定值类型需要为 string | number,否则为 Array', - 'en-US': 'Currently activated panel (In accordion mode, the binding value type must be string. Otherwise, the binding value type is array.)' + 'en-US': + 'Currently activated panel (In accordion mode, the binding value type must be string. Otherwise, the binding value type is array.)' }, 'demoId': 'basic-usage' } @@ -130,7 +142,8 @@ export default { 'defaultValue': '--', 'desc': { 'zh-CN': '当前激活面板改变时触发。如果是手风琴模式,参数 activeNames 类型为 string | number,否则为 Array', - 'en-US': 'Triggered when the current active panel changes. (In accordion mode, the type of activeNames is string. Otherwise, the type of activeNames is array.)' + 'en-US': + 'Triggered when the current active panel changes. (In accordion mode, the type of activeNames is string. Otherwise, the type of activeNames is array.)' }, 'demoId': 'events' } @@ -156,7 +169,7 @@ export default { 'defaultValue': '--', 'desc': { 'zh-CN': '唯一标志符', - 'en-US': 'Unique identifier' + 'en-US': 'Unique identifier' }, 'demoId': 'basic-usage' },