[Vuejs]-TypeError: $data.quotation.company is undefined

0👍

First the quotation property should be declared as an object like quotation: {}, then at the first rendering the field company is not available yet, so you need to add some conditional rendering as follows :


<div v-if="quotation.company" >
    {{quotation.company.name}
</div>

Leave a comment