<CInput
label="Фамилия"
v-model = "patient.last_name"
horizontal
/>
<CInput
label="Имя"
v-model = "patient.first_name"
horizontal
/>
<CInput
label="Отчество"
v-model = "patient.patronymic"
horizontal
/>
<CRow form class="form-group">
<CCol sm="3">
Пол
</CCol>
<CInputRadioGroup
class="col-sm-9"
v-model = "patient.sex"
:options="sex_option"
:inline=true
/>
</CRow>
<CInputRadioGroup
class="col-sm-9"
:options="sex_option"
:inline=true
:checked.sync="patient.sex"
/>