diff --git a/docs/frameworks/vue.md b/docs/frameworks/vue.md index 1d4ba5cf9..692210b50 100644 --- a/docs/frameworks/vue.md +++ b/docs/frameworks/vue.md @@ -58,7 +58,7 @@ Now you can start using Shoelace components in your app! ### QR code generator example -```vue +```html ``` @@ -101,15 +101,12 @@ When binding complex data such as objects and arrays, use the `.prop` modifier t ### Slots -To use Shoelace components with slots, follow the Vue documentation on using [slots with custom elements.](https://vuejs.org/guide/extras/web-components.html#building-custom-elements-with-vue) Here is an example: +To use Shoelace components with slots, follow the Vue documentation on using [slots with custom elements](https://vuejs.org/guide/extras/web-components.html#building-custom-elements-with-vue). -```vue - +Here is an example: + +```html + This drawer slides in from the start.
Close