* Get outerHTML of elements, taking care * of SVG elements in IE as well.
(el)
| 9306 | * of SVG elements in IE as well. |
| 9307 | */ |
| 9308 | function getOuterHTML (el) { |
| 9309 | if (el.outerHTML) { |
| 9310 | return el.outerHTML |
| 9311 | } else { |
| 9312 | var container = document.createElement('div'); |
| 9313 | container.appendChild(el.cloneNode(true)); |
| 9314 | return container.innerHTML |
| 9315 | } |
| 9316 | } |
| 9317 | |
| 9318 | Vue$3.compile = compileToFunctions; |
| 9319 |