File tree 2 files changed +21
-1
lines changed
test/unit/modules/compiler
2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import { unicodeRegExp } from 'core/util/lang'
15
15
16
16
// Regular Expressions for parsing tags and attributes
17
17
const attribute = / ^ \s * ( [ ^ \s " ' < > \/ = ] + ) (?: \s * ( = ) \s * (?: " ( [ ^ " ] * ) " + | ' ( [ ^ ' ] * ) ' + | ( [ ^ \s " ' = < > ` ] + ) ) ) ? /
18
- const dynamicArgAttribute = / ^ \s * ( (?: v - [ \w - ] + : | @ | : | # ) \[ [ ^ = ] + \] [ ^ \s " ' < > \/ = ] * ) (?: \s * ( = ) \s * (?: " ( [ ^ " ] * ) " + | ' ( [ ^ ' ] * ) ' + | ( [ ^ \s " ' = < > ` ] + ) ) ) ? /
18
+ const dynamicArgAttribute = / ^ \s * ( (?: v - [ \w - ] + : | @ | : | # ) \[ [ ^ = ] + ? \] [ ^ \s " ' < > \/ = ] * ) (?: \s * ( = ) \s * (?: " ( [ ^ " ] * ) " + | ' ( [ ^ ' ] * ) ' + | ( [ ^ \s " ' = < > ` ] + ) ) ) ? /
19
19
const ncname = `[a-zA-Z_][\\-\\.0-9_a-zA-Z${ unicodeRegExp . source } ]*`
20
20
const qnameCapture = `((?:${ ncname } \\:)?${ ncname } )`
21
21
const startTagOpen = new RegExp ( `^<${ qnameCapture } ` )
Original file line number Diff line number Diff line change @@ -569,6 +569,26 @@ describe('parser', () => {
569
569
} )
570
570
} )
571
571
572
+ // #9781
573
+ it ( 'multiple dynamic slot names without warning' , ( ) => {
574
+ const ast = parse ( `<my-component>
575
+ <template #[foo]>foo</template>
576
+ <template #[data]="scope">scope</template>
577
+ <template #[bar]>bar</template>
578
+ </my-component>` , baseOptions )
579
+
580
+ expect ( `Invalid dynamic argument expression` ) . not . toHaveBeenWarned ( )
581
+ expect ( ast . scopedSlots . foo ) . not . toBeUndefined ( )
582
+ expect ( ast . scopedSlots . data ) . not . toBeUndefined ( )
583
+ expect ( ast . scopedSlots . bar ) . not . toBeUndefined ( )
584
+ expect ( ast . scopedSlots . foo . type ) . toBe ( 1 )
585
+ expect ( ast . scopedSlots . data . type ) . toBe ( 1 )
586
+ expect ( ast . scopedSlots . bar . type ) . toBe ( 1 )
587
+ expect ( ast . scopedSlots . foo . attrsMap [ '#[foo]' ] ) . toBe ( '' )
588
+ expect ( ast . scopedSlots . bar . attrsMap [ '#[bar]' ] ) . toBe ( '' )
589
+ expect ( ast . scopedSlots . data . attrsMap [ '#[data]' ] ) . toBe ( 'scope' )
590
+ } )
591
+
572
592
// #6887
573
593
it ( 'special case static attribute that must be props' , ( ) => {
574
594
const ast = parse ( '<video muted></video>' , baseOptions )
You can’t perform that action at this time.
0 commit comments