Upload: fix ssr suppport

pull/2055/head
qingwei.li 2016-12-28 20:04:38 +08:00 committed by 杨奕
parent 191c8ab3d1
commit 64fcb4627c
1 changed files with 3 additions and 3 deletions

View File

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