|
56 | 56 | mounted() {
|
57 | 57 | if (this.targetId) {
|
58 | 58 | let target = this.targetId;
|
59 |
| - if (!target) { |
60 |
| - return; |
61 |
| - } |
62 |
| - target = document.getElementById(/^#/.test(target) ? target.slice(1) : target); |
63 |
| - if (target && !this.popOver) { |
64 |
| - // We pass the title & content as part of the config |
65 |
| - this.popOver = new PopOver(target, this.getConfig(), this.$root); |
66 |
| - this.$on('close', this.onClose); |
67 |
| - // Observe content Child changes so we can notify popper of possible size change |
68 |
| - observeDom(this.$refs.content, this.updatePosition.bind(this), { |
69 |
| - subtree: true, |
70 |
| - childList: true, |
71 |
| - attributes: true, |
72 |
| - attributeFilter: ['class', 'style'] |
73 |
| - }); |
74 |
| - } |
| 59 | + this.$nextTick(() => { |
| 60 | + target = document.getElementById(/^#/.test(target) ? target.slice(1) : target); |
| 61 | + if (target && !this.popOver) { |
| 62 | + // We pass the title & content as part of the config |
| 63 | + this.popOver = new PopOver(target, this.getConfig(), this.$root); |
| 64 | + this.$on('close', this.onClose); |
| 65 | + // Observe content Child changes so we can notify popper of possible size change |
| 66 | + observeDom(this.$refs.content, this.updatePosition.bind(this), { |
| 67 | + subtree: true, |
| 68 | + childList: true, |
| 69 | + attributes: true, |
| 70 | + attributeFilter: ['class', 'style'] |
| 71 | + }); |
| 72 | + } |
| 73 | + }); |
75 | 74 | }
|
76 | 75 | },
|
77 | 76 | updated() {
|
|
101 | 100 | offset: this.offset || 0,
|
102 | 101 | triggers: isArray(this.triggers) ? this.triggers.join(' ') : this.triggers,
|
103 | 102 | callbacks: {
|
104 |
| - show: (evt) => this.$emit('show', evt), |
105 |
| - shown: () => this.$emit('shown'), |
106 |
| - hide: (evt) => this.$emit('hide', evt), |
107 |
| - hidden: () => this.$emit('hidden') |
| 103 | + show: (evt) => this.onShow(evt), |
| 104 | + shown: (evt) => this.onShown(evt), |
| 105 | + hide: (evt) => this.onHide(evt), |
| 106 | + hidden: (evt) => this.onHidden(evt) |
108 | 107 | }
|
109 | 108 | };
|
110 | 109 | }
|
|
136 | 135 | cfg.html = true;
|
137 | 136 | }
|
138 | 137 | return cfg;
|
139 |
| - } |
| 138 | + }, |
| 139 | + onShow(evt) { |
| 140 | + this.$emit('show', evt); |
| 141 | + }, |
| 142 | + onShown(evt) { |
| 143 | + this.$emit('shown'); |
| 144 | + }, |
| 145 | + onHide(evt) { |
| 146 | + this.$emit('hide', evt) |
| 147 | + }, |
| 148 | + onHidden(evt) { |
| 149 | + // bring our content back if needed to keep Vue happy |
| 150 | + // Tooltip class will move it back to $tip when shown again |
| 151 | + this.$el.appendChild(this.$refs.title); |
| 152 | + this.$el.appendChild(this.$refs.content); |
| 153 | + this.$emit('hidden'); |
| 154 | + } |
140 | 155 | }
|
141 | 156 | };
|
142 | 157 | </script>
|
0 commit comments