()
| 31 | } |
| 32 | |
| 33 | afterRender() { |
| 34 | if (this.vueComponent) { |
| 35 | this.$el.find('#site-content-area').replaceWith(this.vueComponent.$el) |
| 36 | } |
| 37 | else{ |
| 38 | this.vueComponent = this.buildVueComponent() |
| 39 | window.rootComponent = this.vueComponent |
| 40 | } |
| 41 | |
| 42 | super.afterRender() |
| 43 | } |
| 44 | |
| 45 | destroy() { |
| 46 | this.vueComponent.$destroy() |
nothing calls this directly
no test coverage detected