fix: add props of vc-upload

pull/22/head
wangxueliang 2018-05-07 10:30:23 +08:00
parent c04144afd9
commit d8c4d580b6
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ const upLoadPropTypes = {
// style: PropTypes.object,
prefixCls: PropTypes.string,
action: PropTypes.string,
name: PropTypes.string,
// className: PropTypes.string,
multiple: PropTypes.bool,
disabled: PropTypes.bool,

View File

@ -4,7 +4,7 @@ import Iframe from './components/iframe.vue'
const AsyncTestComp = () => {
const d = window.location.hash.replace('#', '')
return {
component: import(`../components/menu/demo/${d}`),
component: import(`../components/upload/demo/${d}`),
}
}