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