Skip to content

Dynamic props not working with slots after 2.6x update. #9444

Closed
@DotNetGit

Description

@DotNetGit

Version

2.6.2

Reproduction link

no link

Steps to reproduce

Create component with slot, add dynamic prop "itemName" to slot like this:

<slot :[itemName]="item" name="item-content" />

What is expected?

Dynamic prop is binded to the slot.

What is actually happening?

Dynamic prop is not binded to the slot.


I used the syntax below for a long time until the update 2.62:

<slot :[itemName]="item" name="item-content" />

After the update it is not working, I had to change it across all projects to the following:

<slot v-bind="{ [itemName]: item }" name="item-content" />

But the docs from here told that the first snippet has a valid syntax.

What is wrong with dynamic props or slots or maybe with them both or just this syntax do not work anymore?

Regards.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions