(el)
| 8540 | |
| 8541 | // hoist static sub-trees out |
| 8542 | function genStatic (el) { |
| 8543 | el.staticProcessed = true; |
| 8544 | staticRenderFns.push(("with(this){return " + (genElement(el)) + "}")); |
| 8545 | return ("_m(" + (staticRenderFns.length - 1) + (el.staticInFor ? ',true' : '') + ")") |
| 8546 | } |
| 8547 | |
| 8548 | // v-once |
| 8549 | function genOnce (el) { |
no test coverage detected