lofter-video-upload
v1.0.0
Published
Demo:
Downloads
3
Readme
Foo
Demo:
import React from 'react';
import { VideoUpload } from 'video-upload';
export default () => <VideoUpload />;api
interface Props {
hint?: string; // 额外的描述文字,比如'限制width:xxx,height:xxx'
value?: string;
onChange?: (value: string) => void;
accept?: string // 上传文件的类型
}