use "breadcrumbs"

This commit is contained in:
Jörn-Michael Miehe 2023-01-19 19:35:20 +00:00
parent 22d58f94b6
commit e8dd32c71f

View file

@ -2,7 +2,7 @@
<div class="box"> <div class="box">
<p class="title is-4">Türchen bearbeiten</p> <p class="title is-4">Türchen bearbeiten</p>
<div class="tabs is-centered"> <nav class="breadcrumb has-succeeds-separator" aria-label="breadcrumbs">
<ul> <ul>
<li <li
v-for="(step, index) in steps" v-for="(step, index) in steps"
@ -13,9 +13,10 @@
<a>{{ step }}</a> <a>{{ step }}</a>
</li> </li>
</ul> </ul>
</div> </nav>
<DoorPlacer v-if="current_step === 0" /> <DoorPlacer v-if="current_step === 0" />
<p v-if="current_step === 1">Narf!</p>
</div> </div>
</template> </template>