File tree 2 files changed +23
-2
lines changed
2 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -712,6 +712,27 @@ describe('compiler: v-if', () => {
712
712
expect ( b1 . children [ 3 ] . type ) . toBe ( NodeTypes . ELEMENT )
713
713
expect ( ( b1 . children [ 3 ] as ElementNode ) . tag ) . toBe ( `p` )
714
714
} )
715
+
716
+ // #6843
717
+ test ( 'should parse correctly with comments: true in prod' , ( ) => {
718
+ __DEV__ = false
719
+ parseWithIfTransform (
720
+ `
721
+ <template v-if="ok">
722
+ <!--comment1-->
723
+ <div v-if="ok2">
724
+ <!--comment2-->
725
+ </div>
726
+ <!--comment3-->
727
+ <b v-else/>
728
+ <!--comment4-->
729
+ <p/>
730
+ </template>
731
+ ` ,
732
+ { comments : true }
733
+ )
734
+ __DEV__ = true
735
+ } )
715
736
} )
716
737
717
738
test ( 'v-on with v-if' , ( ) => {
Original file line number Diff line number Diff line change @@ -129,9 +129,9 @@ export function processIf(
129
129
let i = siblings . indexOf ( node )
130
130
while ( i -- >= - 1 ) {
131
131
const sibling = siblings [ i ]
132
- if ( __DEV__ && sibling && sibling . type === NodeTypes . COMMENT ) {
132
+ if ( sibling && sibling . type === NodeTypes . COMMENT ) {
133
133
context . removeNode ( sibling )
134
- comments . unshift ( sibling )
134
+ __DEV__ && comments . unshift ( sibling )
135
135
continue
136
136
}
137
137
You can’t perform that action at this time.
0 commit comments