Commit 4ac6fed6 authored by cinwell.li's avatar cinwell.li Committed by baiyaaaaa

Tooltip: fix ssr, fixed #3173 (#3214)

parent 3768ba2b
...@@ -52,8 +52,7 @@ export default { ...@@ -52,8 +52,7 @@ export default {
}, },
render(h) { render(h) {
if (this.$isServer) return; if (this.popperVM) {
this.popperVM.node = ( this.popperVM.node = (
<transition <transition
name={ this.transition } name={ this.transition }
...@@ -69,6 +68,7 @@ export default { ...@@ -69,6 +68,7 @@ export default {
{ this.$slots.content || this.content } { this.$slots.content || this.content }
</div> </div>
</transition>); </transition>);
}
if (!this.$slots.default || !this.$slots.default.length) return this.$slots.default; if (!this.$slots.default || !this.$slots.default.length) return this.$slots.default;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment