ui_migration fix(deps): --preliminary-- Removing markRaw to static declared components. Improvement, SmartScan now works partially.
This commit is contained in:
parent
dfca0ff7e0
commit
ee71a416b1
38 changed files with 71 additions and 72 deletions
|
|
@ -26,8 +26,8 @@ export default {
|
|||
name: "CameraMainCalibrationStep",
|
||||
|
||||
components: {
|
||||
stepTemplateWithStream: markRaw(stepTemplateWithStream),
|
||||
cameraCalibrationSettings: markRaw(cameraCalibrationSettings),
|
||||
stepTemplateWithStream,
|
||||
cameraCalibrationSettings
|
||||
},
|
||||
|
||||
computed: {
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ import { markRaw } from "vue";
|
|||
export default {
|
||||
name: "CameraCalibrationTask",
|
||||
components: {
|
||||
calibrationWizardTask: markRaw(calibrationWizardTask) },
|
||||
calibrationWizardTask},
|
||||
props: {
|
||||
// Standard calibrationWizardTask props below:
|
||||
first: Boolean,
|
||||
|
|
|
|||
|
|
@ -20,8 +20,8 @@ import { markRaw } from "vue";
|
|||
|
||||
export default {
|
||||
name: "CameraCalibrationTask",
|
||||
components: {
|
||||
calibrationWizardTask: markRaw(calibrationWizardTask)
|
||||
components: {
|
||||
calibrationWizardTask
|
||||
},
|
||||
props: {
|
||||
// Standard calibrationWizardTask props below:
|
||||
|
|
|
|||
|
|
@ -37,8 +37,8 @@ export default {
|
|||
name: "CameraMainCalibrationStep",
|
||||
|
||||
components: {
|
||||
stepTemplateWithStream: markRaw(stepTemplateWithStream),
|
||||
ActionButton: markRaw(ActionButton),
|
||||
stepTemplateWithStream,
|
||||
ActionButton
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -25,8 +25,8 @@ export default {
|
|||
name: "CameraMainCalibrationStep",
|
||||
|
||||
components: {
|
||||
stepTemplateWithStream: markRaw(stepTemplateWithStream),
|
||||
CSMCalibrationSettings: markRaw(CSMCalibrationSettings),
|
||||
stepTemplateWithStream,
|
||||
CSMCalibrationSettings,
|
||||
},
|
||||
|
||||
mounted() {
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ import { markRaw } from "vue";
|
|||
export default {
|
||||
name: "SingleStepTask",
|
||||
components: {
|
||||
calibrationWizardTask: markRaw(calibrationWizardTask)
|
||||
calibrationWizardTask
|
||||
},
|
||||
props: {
|
||||
// This must be sent
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ export default {
|
|||
name: "StepTemplateWithStream",
|
||||
|
||||
components: {
|
||||
miniStreamDisplay: markRaw(miniStreamDisplay),
|
||||
miniStreamDisplay
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue