From 6b61d6aacbf9d8c42076534c3fd4affaf3939e31 Mon Sep 17 00:00:00 2001 From: Jeff Date: Thu, 18 Jan 2018 13:27:53 -0800 Subject: [PATCH] improve Localization docs --- docs/gitbook/Basics/Localization.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) 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