Fixed #1652 - Ripple added Dock

pull/1664/head
Tuğçe Küçükoğlu 2021-10-08 14:52:36 +03:00
parent 306b38ef5d
commit dd1888c171
1 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,8 @@
</template>
<script>
import Ripple from 'primevue/ripple';
export default {
name: 'DockSub',
props: {
@ -92,6 +94,9 @@ export default {
disabled(item) {
return (typeof item.disabled === 'function' ? item.disabled() : item.disabled);
}
},
directives: {
'ripple': Ripple
}
}
</script>