mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Fixed #1652 - Ripple added Dock
This commit is contained in:
parent
306b38ef5d
commit
dd1888c171
1 changed files with 5 additions and 0 deletions
|
@ -27,6 +27,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import Ripple from 'primevue/ripple';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'DockSub',
|
name: 'DockSub',
|
||||||
props: {
|
props: {
|
||||||
|
@ -92,6 +94,9 @@ export default {
|
||||||
disabled(item) {
|
disabled(item) {
|
||||||
return (typeof item.disabled === 'function' ? item.disabled() : item.disabled);
|
return (typeof item.disabled === 'function' ? item.disabled() : item.disabled);
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
directives: {
|
||||||
|
'ripple': Ripple
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue