19 lines
535 B
Vue
19 lines
535 B
Vue
<template>
|
|
<div :class="cx('root')" :style="style" v-bind="ptm('root')">
|
|
<DockSub :model="model" :templates="$slots" :exact="exact" :tooltipOptions="tooltipOptions" :position="position" :menuId="menuId" :aria-label="ariaLabel" :aria-labelledby="ariaLabelledby" :tabindex="tabindex" :pt="pt"></DockSub>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseDock from './BaseDock.vue';
|
|
import DockSub from './DockSub.vue';
|
|
|
|
export default {
|
|
name: 'Dock',
|
|
extends: BaseDock,
|
|
components: {
|
|
DockSub
|
|
}
|
|
};
|
|
</script>
|