We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 26c7ef8 + fb20187 commit db31174Copy full SHA for db31174
2 files changed
@codexteam/ui/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@codexteam/ui",
3
- "version": "0.1.0",
+ "version": "0.1.1",
4
"type": "module",
5
"scripts": {
6
"dev": "vite",
@codexteam/ui/src/vue/layout/page-block/PageBlock.vue
@@ -7,10 +7,12 @@
7
>
8
<!-- Left Sidebar -->
9
<div
10
- v-if="$slots.left"
11
:class="$style['page-block__sidebar']"
12
13
- <slot name="left" />
+ <slot
+ v-if="$slots.left"
14
+ name="left"
15
+ />
16
</div>
17
18
<!-- Center Content -->
@@ -25,10 +27,12 @@
25
27
26
28
<!-- Right Sidebar -->
29
- v-if="$slots.right"
30
31
- <slot name="right" />
32
33
+ v-if="$slots.right"
34
+ name="right"
35
36
37
38
</template>
0 commit comments