[web] Rename template slots

This commit is contained in:
Alain Nussbaumer
2025-03-15 15:06:45 +01:00
parent 9e2c9fddcb
commit 59b680db9b
36 changed files with 64 additions and 68 deletions

View File

@@ -20,16 +20,16 @@
class="level-item is-flex-shrink-1 has-text-centered-mobile"
>
<div>
<slot name="heading-left" />
<slot name="heading" />
</div>
</div>
</div>
<div
v-if="$slots['heading-right']"
v-if="$slots.actions"
class="level-right has-text-centered-mobile"
>
<div class="buttons">
<slot name="heading-right" />
<slot name="actions" />
</div>
</div>
</nav>