Skip to content

Commit

Permalink
fix: avoid v-ripple missing warn when config.ripple is disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
byronogis authored Jul 14, 2024
1 parent a97eea6 commit 24fc80e
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 { getWidth, findSingle, getHeight, getOuterHeight, getOuterWidth, getOffs
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 24fc80e

Please sign in to comment.