mirror of
https://github.com/romancm/gamebrary
synced 2025-02-16 11:08:24 +00:00
add action buttons at top of platform picker
This commit is contained in:
parent
808e43092d
commit
38de79d8ad
1 changed files with 22 additions and 0 deletions
|
@ -66,6 +66,28 @@
|
|||
</template>
|
||||
|
||||
<template v-if="activeStep === 2">
|
||||
<div
|
||||
v-if="board.platforms.length"
|
||||
class="mb-3 d-flex justify-content-end align-items-center"
|
||||
>
|
||||
<b-button
|
||||
variant="secondary"
|
||||
@click="activeStep = activeStep + 1"
|
||||
>
|
||||
Optional: choose a board template
|
||||
</b-button>
|
||||
|
||||
<span class="mx-2">or</span>
|
||||
|
||||
<b-button
|
||||
variant="primary"
|
||||
@click="createBoard"
|
||||
>
|
||||
<b-spinner small v-if="saving" />
|
||||
<span v-else>Create board</span>
|
||||
</b-button>
|
||||
</div>
|
||||
|
||||
<platform-picker v-model="board.platforms" />
|
||||
|
||||
<div class="d-flex justify-content-end align-items-center">
|
||||
|
|
Loading…
Add table
Reference in a new issue