Skip to content

Commit 85ac700

Browse files
committed
fix: images for layout components
1 parent da62b06 commit 85ac700

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

en/v5/tutorials/layout-components.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The Box component creates spacings around components and provides positioning op
77
Tip: To make components more reusable, avoid adding outer spacings directly to them; instead,
88
wrap them in a Box component.
99

10-
<img src="/v5/vue-box.png">
10+
<img :src="$withBase('/v5/vue-box.png')" alt="vue-box component">
1111

1212
```html
1313
<vue-box padding="16 24">
@@ -21,7 +21,7 @@ By default, components are equally distributed, but each column can have a speci
2121
Columns can be stacked, making them ideal for creating forms or general layouts.
2222
Tip: Columns don't provide vertical space, so pair them with the Stack component.
2323

24-
<img src="/v5/vue-columns.png">
24+
<img :src="$withBase('/v5/vue-columns.png')" alt="vue-columns component">
2525

2626
```html
2727
<vue-columns space="16" padding="16 24">
@@ -42,7 +42,7 @@ limiting the content width of a page or component.
4242
Inline provides both horizontal and vertical spacings between components,
4343
displaying them with their inline width. It can be stacked and is excellent for creating a list of elements.
4444

45-
<img src="/v5/vue-inline.png">
45+
<img :src="$withBase('/v5/vue-inline.png')" alt="vue-inline component">
4646

4747
```html
4848
<vue-inline space="8" padding="16 24">
@@ -61,7 +61,7 @@ Tip: It supports only 3 columns and has a fixed responsive behavior.
6161
### [Stack](https://vuesion.herokuapp.com/storybook/?path=/story/foundation-layout--stack)
6262
Stack provides vertical spacings between components, displaying them with their original height.
6363

64-
<img src="/v5/vue-stack.png">
64+
<img :src="$withBase('/v5/vue-stack.png')" alt="vue-stack component">
6565

6666
```html
6767
<vue-stack space="8" padding="16 24">

0 commit comments

Comments
 (0)