diff --git a/components/skeleton/index.jsx b/components/skeleton/index.jsx index b0879409c..c66bdbde3 100644 --- a/components/skeleton/index.jsx +++ b/components/skeleton/index.jsx @@ -157,7 +157,8 @@ const Skeleton = { ); } - return {this.$slots.default}; + const children = this.$slots.default; + return children && children.length === 1 ? children[0] : {children}; }, }; /* istanbul ignore next */