Upload: fix ssr suppport

This commit is contained in:
qingwei.li 2016-12-28 20:04:38 +08:00 committed by 杨奕
parent 191c8ab3d1
commit 64fcb4627c

View File

@ -209,7 +209,7 @@ export default {
ref: 'upload-inner'
};
var uploadComponent = this.$isServer ? '' : typeof FormData !== 'undefined'
var uploadComponent = (typeof FormData !== 'undefined' || this.$isServer)
? <upload {...props}>{this.$slots.default}</upload>
: <iframeUpload {...props}>{this.$slots.default}</iframeUpload>;