Skip to content

Commit

Permalink
Merge pull request primefaces#6058 from byronogis/master
Browse files Browse the repository at this point in the history
fix: avoid `v-ripple` missing warn when Ripple is not been registered
  • Loading branch information
tugcekucukoglu authored Jul 19, 2024
2 parents 6bca2a8 + 24fc80e commit b7b98d4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/primevue/src/tablist/TabList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import { findSingle, getHeight, getOffset, getOuterHeight, getOuterWidth, getWid
import ChevronLeftIcon from '@primevue/icons/chevronleft';
import ChevronRightIcon from '@primevue/icons/chevronright';
import BaseTabList from './BaseTabList.vue';
import Ripple from 'primevue/ripple';
export default {
name: 'TabList',
Expand Down Expand Up @@ -160,6 +161,9 @@ export default {
components: {
ChevronLeftIcon,
ChevronRightIcon
},
directives: {
ripple: Ripple
}
};
</script>

0 comments on commit b7b98d4

Please sign in to comment.