fix: basemodal 无法透传 attributes 至 Modal.tsx (#3637)

This commit is contained in:
黄小民 2024-03-04 10:56:20 +08:00 committed by GitHub
parent eae68bb029
commit 89830ec7e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,6 @@ import { Modal } from 'ant-design-vue';
import { defineComponent, toRefs, unref } from 'vue';
import { basicProps } from '../props';
import { useModalDragMove } from '../hooks/useModalDrag';
import { useAttrs } from '@vben/hooks';
import { extendSlots } from '@/utils/helper/tsxHelper';
export default defineComponent({
@ -10,9 +9,8 @@ export default defineComponent({
inheritAttrs: false,
props: basicProps as any,
emits: ['cancel'],
setup(props, { slots, emit }) {
setup(props, { slots, emit, attrs }) {
const { open, draggable, destroyOnClose } = toRefs(props);
const attrs = useAttrs();
useModalDragMove({
open,
destroyOnClose,