@@ -18,6 +18,7 @@ export class CodegenState {
18
18
maybeComponent: ( el : ASTElement ) => boolean ;
19
19
onceId: number ;
20
20
staticRenderFns: Array < string > ;
21
+ pre: boolean ;
21
22
22
23
constructor ( options : CompilerOptions ) {
23
24
this . options = options
@@ -29,6 +30,7 @@ export class CodegenState {
29
30
this . maybeComponent = ( el : ASTElement ) => ! ( isReservedTag ( el . tag ) && ! el . component )
30
31
this . onceId = 0
31
32
this . staticRenderFns = [ ]
33
+ this . pre = false
32
34
}
33
35
}
34
36
@@ -58,7 +60,7 @@ export function genElement (el: ASTElement, state: CodegenState): string {
58
60
return genFor ( el , state )
59
61
} else if ( el . if && ! el . ifProcessed ) {
60
62
return genIf ( el , state )
61
- } else if ( el . tag === 'template' && ! el . slotTarget ) {
63
+ } else if ( el . tag === 'template' && ! el . slotTarget && ! state . pre ) {
62
64
return genChildren ( el , state ) || 'void 0'
63
65
} else if ( el . tag === 'slot' ) {
64
66
return genSlot ( el , state )
@@ -88,7 +90,15 @@ export function genElement (el: ASTElement, state: CodegenState): string {
88
90
// hoist static sub-trees out
89
91
function genStatic ( el : ASTElement , state : CodegenState ) : string {
90
92
el . staticProcessed = true
93
+ // Some elements (templates) need to behave differently inside of a v-pre
94
+ // node. All pre nodes are static roots, so we can use this as a location to
95
+ // wrap a state change and reset it upon exiting the pre node.
96
+ const originalPreState = state . pre
97
+ if ( el . pre ) {
98
+ state . pre = el . pre
99
+ }
91
100
state . staticRenderFns . push ( `with(this){return ${ genElement ( el , state ) } }` )
101
+ state . pre = originalPreState
92
102
return `_m(${
93
103
state . staticRenderFns . length - 1
94
104
} ${
0 commit comments