Skip to content

Commit 67825c2

Browse files
shasharomanposva
andauthored
fix(parser): allow multiple slots with new syntax (#9785)
* fix(#9781): non greedy `dynamicArgAttribute` RegExp * test(parser): add test case for multiple dynamic slot names * test: add test with value Co-authored-by: Eduardo San Martin Morote <[email protected]>
1 parent abb5ef3 commit 67825c2

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

src/compiler/parser/html-parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { unicodeRegExp } from 'core/util/lang'
1515

1616
// Regular Expressions for parsing tags and attributes
1717
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"'=<>`]+)))?/
1919
const ncname = `[a-zA-Z_][\\-\\.0-9_a-zA-Z${unicodeRegExp.source}]*`
2020
const qnameCapture = `((?:${ncname}\\:)?${ncname})`
2121
const startTagOpen = new RegExp(`^<${qnameCapture}`)

test/unit/modules/compiler/parser.spec.js

+20
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,26 @@ describe('parser', () => {
569569
})
570570
})
571571

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+
572592
// #6887
573593
it('special case static attribute that must be props', () => {
574594
const ast = parse('<video muted></video>', baseOptions)

0 commit comments

Comments
 (0)