fill out inspection and inspection plan

This commit is contained in:
Julian Krauser 2025-07-10 10:49:44 +02:00
parent 23bdde5fc2
commit 1409cf8045
12 changed files with 374 additions and 77 deletions

View file

@ -36,8 +36,8 @@ export default defineComponent({
required: true,
},
modelValue: {
type: String as PropType<"true" | "false">,
default: "false",
type: String as PropType<"true" | "false" | "">,
default: "",
},
},
emits: ["update:model-value"],
@ -59,5 +59,8 @@ export default defineComponent({
},
},
},
mounted() {
if (this.value == "") this.value = "false";
},
});
</script>