mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 20:18:22 +08:00
04baae5a57
* refactor: vc-upload * refactor: vc-upload * refactor: upload * refactor: upload * refactor: upload
23 lines
657 B
Vue
23 lines
657 B
Vue
import { defineComponent } from 'vue';
|
|
import Upload from './Upload';
|
|
import { uploadProps } from './interface';
|
|
|
|
export default defineComponent({
|
|
name: 'AUploadDragger',
|
|
inheritAttrs: false,
|
|
props: uploadProps(),
|
|
setup(props, { slots, attrs }) {
|
|
return () => {
|
|
const { height, ...restProps } = props;
|
|
const { style, ...restAttrs } = attrs;
|
|
const draggerProps = {
|
|
...restProps,
|
|
...restAttrs,
|
|
type: 'drag',
|
|
style: { ...(style as any), height: typeof height === 'number' ? `${height}px` : height },
|
|
} as any;
|
|
return <Upload {...draggerProps} v-slots={slots}></Upload>;
|
|
};
|
|
},
|
|
});
|