26 lines
No EOL
738 B
Vue
26 lines
No EOL
738 B
Vue
<template>
|
|
<div class="windshield-options">
|
|
<windshieldDamageTypeQuestion
|
|
ref="windshieldDamageType"
|
|
v-model="selectedWindshieldDamageTypes"
|
|
groupName="windshieldDamageTypeQuestion"
|
|
:isAvailable="showWindshieldDamageTypeQuestion"
|
|
:suppressError="suppressError"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import windshieldDamageTypeQuestion from "@/layouts/vehicle-damage/windshield-damage-type-question/windshield-damage-type-question";
|
|
|
|
export default ({
|
|
name: "windshieldOptions",
|
|
props: {
|
|
showWindshieldDamageTypeQuestion: Boolean,
|
|
suppressError: Boolean,
|
|
},
|
|
components: {
|
|
windshieldDamageTypeQuestion,
|
|
},
|
|
})
|
|
</script> |