2022-09-06 12:03:37 +00:00
|
|
|
<template>
|
2023-05-30 13:03:35 +00:00
|
|
|
<div :class="cx('root')" :style="style" v-bind="ptm('root')" data-pc-name="dock">
|
2023-04-26 10:49:14 +00:00
|
|
|
<DockSub :model="model" :templates="$slots" :exact="exact" :tooltipOptions="tooltipOptions" :position="position" :menuId="menuId" :aria-label="ariaLabel" :aria-labelledby="ariaLabelledby" :tabindex="tabindex" :pt="pt"></DockSub>
|
2022-09-06 12:03:37 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-05-30 12:56:18 +00:00
|
|
|
import BaseDock from './BaseDock.vue';
|
2022-09-06 12:03:37 +00:00
|
|
|
import DockSub from './DockSub.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Dock',
|
2023-05-30 12:56:18 +00:00
|
|
|
extends: BaseDock,
|
2022-09-06 12:03:37 +00:00
|
|
|
components: {
|
|
|
|
DockSub
|
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
};
|
2022-09-06 12:03:37 +00:00
|
|
|
</script>
|