Skip to content

Commit

Permalink
fix: component slots (#2780)
Browse files Browse the repository at this point in the history
* fix: missing anchor

* fix: relative links
  • Loading branch information
AloisSeckar committed Apr 2, 2024
1 parent 1ab62a5 commit e7163d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/guide/components/slots.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,11 @@ function BaseLayout(slots) {
}
```

## Conditional Slots
## Conditional Slots {#conditional-slots}

Sometimes you want to render something based on whether or not a slot is present.

You can use the [$slots](https://vuejs.org/api/component-instance.html#slots) property in combination with a [v-if](https://vuejs.org/guide/essentials/conditional.html#v-if) to achieve this.
You can use the [$slots](/api/component-instance.html#slots) property in combination with a [v-if](/guide/essentials/conditional.html#v-if) to achieve this.

In the example below we define a Card component with two conditional slots: `header` and `footer`.
When the header / footer is present we want wrap them to provide additional styling:
Expand Down

0 comments on commit e7163d4

Please sign in to comment.