(el)
| 8534 | |
| 8535 | // hoist static sub-trees out |
| 8536 | function genStatic (el) { |
| 8537 | el.staticProcessed = true; |
| 8538 | staticRenderFns.push(("with(this){return " + (genElement(el)) + "}")); |
| 8539 | return ("_m(" + (staticRenderFns.length - 1) + (el.staticInFor ? ',true' : '') + ")") |
| 8540 | } |
| 8541 | |
| 8542 | // v-once |
| 8543 | function genOnce (el) { |
no test coverage detected