claude-web/node_modules/primevue/dock/BaseDock.vue

47 lines
947 B
Vue
Raw Normal View History

2026-02-23 02:23:38 +00:00
<script>
import BaseComponent from '@primevue/core/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
},
breakpoint: {
type: String,
default: '960px'
},
ariaLabel: {
type: String,
default: null
},
ariaLabelledby: {
type: String,
default: null
}
},
style: DockStyle,
provide() {
return {
$pcDock: this,
$parentInstance: this
};
}
};
</script>