DoorMapEditor level-items
This commit is contained in:
parent
6b28c08fb9
commit
1b42cba9fa
1 changed files with 17 additions and 19 deletions
|
@ -1,27 +1,25 @@
|
|||
<template>
|
||||
<BulmaDrawer header="Türchen bearbeiten" @open="on_open">
|
||||
<nav class="level mb-0">
|
||||
<div class="level-item">
|
||||
<BulmaButton
|
||||
:disabled="current_step === 0"
|
||||
class="is-link"
|
||||
@click="current_step--"
|
||||
icon="fa-solid fa-backward"
|
||||
/>
|
||||
</div>
|
||||
<BulmaButton
|
||||
:disabled="current_step === 0"
|
||||
class="level-item is-link"
|
||||
@click="current_step--"
|
||||
icon="fa-solid fa-backward"
|
||||
/>
|
||||
|
||||
<div class="level-item">
|
||||
<BulmaBreadcrumbs :steps="steps" v-model="current_step" class="mb-0" />
|
||||
</div>
|
||||
<BulmaBreadcrumbs
|
||||
:steps="steps"
|
||||
v-model="current_step"
|
||||
class="level-item mb-0"
|
||||
/>
|
||||
|
||||
<div class="level-item">
|
||||
<BulmaButton
|
||||
:disabled="current_step === 2"
|
||||
class="is-link"
|
||||
@click="current_step++"
|
||||
icon="fa-solid fa-forward"
|
||||
/>
|
||||
</div>
|
||||
<BulmaButton
|
||||
:disabled="current_step === 2"
|
||||
class="level-item is-link"
|
||||
@click="current_step++"
|
||||
icon="fa-solid fa-forward"
|
||||
/>
|
||||
</nav>
|
||||
|
||||
<DoorPlacer v-if="current_step === 0" v-model:doors="doors" />
|
||||
|
|
Loading…
Reference in a new issue