20 lines
422 B
Vue
20 lines
422 B
Vue
<template>
|
|
<div>
|
|
<p>
|
|
<b> Some important microscope calibration data is currently missing. </b>
|
|
</p>
|
|
<p>
|
|
Your microscope will still function, however some functionality will be limited, and image
|
|
quality will likely suffer.
|
|
</p>
|
|
<p>
|
|
<b>Click Next to begin microscope calibration.</b>
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "WelcomeStep",
|
|
};
|
|
</script>
|