Skip to content

Commit

Permalink
Merge pull request #181 from PrestaShopCorp/bug/puik-breadcrumb-add-l…
Browse files Browse the repository at this point in the history
…ocation-type-for-prop-to

fix:  #180 -  add Location type for the prop "to"
  • Loading branch information
mattgoud authored Aug 31, 2023
2 parents dd0be13 + 8e3c845 commit 1895878
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/components/breadcrumb/src/breadcrumb.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { buildProps } from '@puik/utils'
import type { RouteLocationRaw } from 'vue-router'
import type { ExtractPropTypes, PropType } from 'vue'
import type Breadcrumb from './breadcrumb.vue'

export interface BreadcrumbItem {
label: string
to?: string
to?: RouteLocationRaw
href?: string
target?: string
}
Expand Down

0 comments on commit 1895878

Please sign in to comment.