diff --git a/components/lib/breadcrumb/Breadcrumb.d.ts b/components/lib/breadcrumb/Breadcrumb.d.ts index 8372de184..ecae4d79e 100755 --- a/components/lib/breadcrumb/Breadcrumb.d.ts +++ b/components/lib/breadcrumb/Breadcrumb.d.ts @@ -57,15 +57,15 @@ export interface BreadcrumbPassThroughOptions { /** * Used to pass attributes to the list's DOM element. */ - menu?: BreadcrumbPassThroughOptionType; + list?: BreadcrumbPassThroughOptionType; /** - * Used to pass attributes to the list item's DOM element. + * Used to pass attributes to the item's DOM element. */ - menuitem?: BreadcrumbPassThroughOptionType; + item?: BreadcrumbPassThroughOptionType; /** - * Used to pass attributes to the action's DOM element. + * Used to pass attributes to the item link's DOM element. */ - action?: BreadcrumbPassThroughOptionType; + itemLink?: BreadcrumbPassThroughOptionType; /** * Used to pass attributes to the icon's DOM element. */ diff --git a/components/lib/breadcrumb/Breadcrumb.vue b/components/lib/breadcrumb/Breadcrumb.vue index 0cb14c1e7..3955343d9 100755 --- a/components/lib/breadcrumb/Breadcrumb.vue +++ b/components/lib/breadcrumb/Breadcrumb.vue @@ -1,7 +1,7 @@