1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-09 00:42:36 +00:00
primevue-mirror/components/lib/dock/BaseDock.vue
2023-11-08 15:48:23 +03:00

41 lines
832 B
Vue

<script>
import BaseComponent from 'primevue/basecomponent';
import DockStyle from 'primevue/dock/style';
export default {
name: 'BaseDock',
extends: BaseComponent,
props: {
position: {
type: String,
default: 'bottom'
},
model: null,
class: null,
style: null,
tooltipOptions: null,
menuId: {
type: String,
default: null
},
tabindex: {
type: Number,
default: 0
},
'aria-label': {
type: String,
default: null
},
'aria-labelledby': {
type: String,
default: null
}
},
style: DockStyle,
provide() {
return {
$parentInstance: this
};
}
};
</script>