You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
686 B
24 lines
686 B
import { defineComponent } from 'vue';
|
|
import Upload from './Upload';
|
|
import { uploadProps } from './interface';
|
|
|
|
export default defineComponent({
|
|
compatConfig: { MODE: 3 },
|
|
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>;
|
|
};
|
|
},
|
|
});
|