ui_migration lint(fix): changes fixed with lint ecmaversion & es2021
This commit is contained in:
parent
0741e3cf7e
commit
ce19ea3fc0
52 changed files with 242 additions and 193 deletions
|
|
@ -19,8 +19,10 @@ import { markRaw } from "vue";
|
|||
|
||||
export default {
|
||||
name: "CameraCalibrationTask",
|
||||
components: {
|
||||
calibrationWizardTask},
|
||||
components: {
|
||||
calibrationWizardTask,
|
||||
},
|
||||
|
||||
props: {
|
||||
// Standard calibrationWizardTask props below:
|
||||
first: Boolean,
|
||||
|
|
@ -31,9 +33,14 @@ export default {
|
|||
},
|
||||
},
|
||||
|
||||
emits: ["next", "back"],
|
||||
|
||||
data: function () {
|
||||
return {
|
||||
steps: [{ component: markRaw(camCalibrationExplanation) }, { component: markRaw(cameraMainCalibrationStep)}],
|
||||
steps: [
|
||||
{ component: markRaw(camCalibrationExplanation) },
|
||||
{ component: markRaw(cameraMainCalibrationStep) },
|
||||
],
|
||||
};
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue