Skip to content

Commit

Permalink
fix(breadcrumbs): fix vue warn
Browse files Browse the repository at this point in the history
  • Loading branch information
smartapant committed Apr 16, 2018
1 parent 73e3d26 commit a05d6f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<router-link :to="'/'" class="crumb">{{'breadcrumbs.home' | translate}}</router-link>
<router-link
v-for="(item, index) in breadcrumbs"
:to="{name: item.name}"
:to="{path: item.path}"
:key="index"
class="crumb"
v-bind:class="{ disabled: !item.path || item.meta.breadcrumbDisabled }"
Expand Down

0 comments on commit a05d6f0

Please sign in to comment.