Skip to content

Commit

Permalink
Fixed #5991 - OverlayBadge: Failed to resolve component: Badge
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Jul 3, 2024
1 parent 1657f1b commit ee171b5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/primevue/src/overlaybadge/OverlayBadge.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@
</template>

<script>
import Badge from 'primevue/badge';
import BaseOverlayBadge from './BaseOverlayBadge.vue';
export default {
name: 'OverlayBadge',
extends: BaseOverlayBadge,
inheritAttrs: false
inheritAttrs: false,
components: {
Badge
}
};
</script>

0 comments on commit ee171b5

Please sign in to comment.