Add camera calibration steps into refactored calibration wizard.
This commit is contained in:
parent
8f1253ec02
commit
0ebc507eff
10 changed files with 186 additions and 32 deletions
|
|
@ -11,6 +11,7 @@ Tasks can be divided into multiple steps.
|
|||
-->
|
||||
<template>
|
||||
<div>
|
||||
<h3 v-if="title">{{ title }}</h3>
|
||||
<component
|
||||
v-if="currentStep"
|
||||
:is="currentStep.component"
|
||||
|
|
@ -43,6 +44,10 @@ export default {
|
|||
name: "calibrationWizardTask",
|
||||
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
first: Boolean,
|
||||
final: Boolean,
|
||||
startOnLast: {
|
||||
|
|
@ -61,10 +66,6 @@ export default {
|
|||
};
|
||||
},
|
||||
|
||||
mounted() {
|
||||
console.log("Steps received:", this.steps);
|
||||
},
|
||||
|
||||
computed: {
|
||||
currentStep() {
|
||||
return this.steps[this.stepIndex] || null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue