From 86d5573f29d933efa866595f47c55be7bd03312d Mon Sep 17 00:00:00 2001 From: Botar Vlad <48441404+botarvlad@users.noreply.github.com> Date: Wed, 13 Apr 2022 15:54:36 +0300 Subject: [PATCH] Update slots.md Fixed a typo in "stying" --- src/guide/components/slots.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/components/slots.md b/src/guide/components/slots.md index 21315645f9..85c060306b 100644 --- a/src/guide/components/slots.md +++ b/src/guide/components/slots.md @@ -423,7 +423,7 @@ Note the `name` of a slot won't be included in the props because it is reserved ### Fancy List Example -You may be wondering what would be a good use case for scoped slots. Here's an example: imagine a `` component that renders a list of items - it may encapsulate the logic for loading remote data, using the data to display a list, or even advanced features like pagination or infinite scrolling. However, we want it to be flexible with how each item looks and leave the stying of each item to the parent component consuming it. So the desired usage may look like this: +You may be wondering what would be a good use case for scoped slots. Here's an example: imagine a `` component that renders a list of items - it may encapsulate the logic for loading remote data, using the data to display a list, or even advanced features like pagination or infinite scrolling. However, we want it to be flexible with how each item looks and leave the styling of each item to the parent component consuming it. So the desired usage may look like this: ```vue-html