diff --git a/docs/gitbook/Basics/Localization.md b/docs/gitbook/Basics/Localization.md index fff6f56..089e464 100644 --- a/docs/gitbook/Basics/Localization.md +++ b/docs/gitbook/Basics/Localization.md @@ -12,20 +12,32 @@ The `dir` attribute accepts the same values as the [HTML spec](https://developer All of the text within the component has been wrapped within [slots](https://vuejs.org/v2/guide/components.html#Content-Distribution-with-Slots) and can be replaced in your app. - ##### Loading Spinner - +*Slot Definition:* ```html
Loading...
``` +*Implementation:* +```html + + + +``` ##### No Options Text - +*Slot Definition:* ```html Sorry, no matching options. ``` +*Implementation:* +```html + + No Options Here! + +``` + For a full list of component slots, view the [slots API docs](Api/Slots.md). [](codepen://sagalbot/oZmLVN?height=250) \ No newline at end of file