Skip to content

Commit

Permalink
core: frontend: wizard: add 'other' vehicle
Browse files Browse the repository at this point in the history
  • Loading branch information
Williangalvani committed Jun 8, 2023
1 parent b0c65a7 commit e33685d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions core/frontend/src/components/wizard/Wizard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@
class="model-button ma-2"
@click="setupBoat"
/>
<v-icon
v-tooltip="'Other Vehicle Setup'"
class="model-button ma-2 other-button"
@click="setupOther"
>
mdi-ufo-outline
</v-icon>
</div>
<v-row class="pa-5">
<v-btn
Expand Down Expand Up @@ -365,6 +372,15 @@ export default Vue.extend({
},
]
},
setupOther() {
this.step_number += 1
this.vehicle_configuration_pages = [
{
page: RequireInternet,
binds: {},
},
]
},
async setupConfiguration() {
this.step_number += 1
},
Expand Down Expand Up @@ -473,4 +489,10 @@ export default Vue.extend({
.step-label {
text-shadow: 0px 0px 0px !important;
}
.other-button {
width: 300px;
height: 150px;
font-size: 100px;
}
</style>

0 comments on commit e33685d

Please sign in to comment.