Skip to content

Commit

Permalink
fix: breadcrumbs types
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Mar 10, 2022
1 parent df0cdcd commit b95f447
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/breadcrumbs/VBreadcrumbs.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import type {VBreadcrumbItem} from './VBreadcrumbs';
import type {VBreadcrumbItem} from './types';
import type {PropType} from 'vue';
const props = defineProps({
Expand All @@ -13,7 +13,7 @@ const props = defineProps({
},
customClass: {
type: String,
default: ''
default: '',
},
activeColor: {
type: String,
Expand Down

0 comments on commit b95f447

Please sign in to comment.