diff --git a/src/guide/component-slots.md b/src/guide/component-slots.md index 85e8c35fea..ef9a77bb77 100644 --- a/src/guide/component-slots.md +++ b/src/guide/component-slots.md @@ -268,6 +268,16 @@ To make `item` available to the slot content provided by the parent, we can add ``` +You can bind as many attributes to the `slot` as you need: + +```html + +``` + Attributes bound to a `` element are called **slot props**. Now, in the parent scope, we can use `v-slot` with a value to define a name for the slot props we've been provided: ```html