Fixed #6048
parent
92ab5d563c
commit
a27ee0caea
|
@ -31,7 +31,7 @@
|
||||||
<div :ref="contentRef" :class="cx('content')" v-bind="ptm('content')">
|
<div :ref="contentRef" :class="cx('content')" v-bind="ptm('content')">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
<div :ref="footerContainerRef" :class="cx('footer')" v-bind="ptm('footer')">
|
<div v-if="$slots.footer" :ref="footerContainerRef" :class="cx('footer')" v-bind="ptm('footer')">
|
||||||
<slot name="footer"> </slot>
|
<slot name="footer"> </slot>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { addClass, focus, blockBodyScroll, unblockBodyScroll } from '@primeuix/utils/dom';
|
import { addClass, blockBodyScroll, focus, unblockBodyScroll } from '@primeuix/utils/dom';
|
||||||
import { ZIndex } from '@primeuix/utils/zindex';
|
import { ZIndex } from '@primeuix/utils/zindex';
|
||||||
import TimesIcon from '@primevue/icons/times';
|
import TimesIcon from '@primevue/icons/times';
|
||||||
import Button from 'primevue/button';
|
import Button from 'primevue/button';
|
||||||
|
|
Loading…
Reference in New Issue