|
205 | 205 | label="Radios" |
206 | 206 | :label-cols="3" |
207 | 207 | :horizontal="true"> |
208 | | - <b-form-radio |
| 208 | + <b-form-radio-group |
209 | 209 | :plain="true" |
210 | 210 | :options="[ |
211 | 211 | {text: 'Option 1 ',value: '1'}, |
212 | 212 | {text: 'Option 2 ',value: '2'}, |
213 | 213 | {text: 'Option 3 ',value: '3'} |
214 | 214 | ]" |
215 | 215 | value="1" |
216 | | - stacked></b-form-radio> |
| 216 | + stacked> |
| 217 | + </b-form-radio-group> |
217 | 218 | </b-form-fieldset> |
218 | 219 | <b-form-fieldset |
219 | 220 | label="Radios - custom" |
220 | 221 | :label-cols="3" |
221 | 222 | :horizontal="true"> |
222 | | - <b-form-radio |
| 223 | + <b-form-radio-group |
223 | 224 | :options="[ |
224 | 225 | {text: 'Option 1',value: '1'}, |
225 | 226 | {text: 'Option 2',value: '2'}, |
226 | 227 | {text: 'Option 3',value: '3'} |
227 | 228 | ]" |
228 | 229 | value="1" |
229 | | - stacked></b-form-radio> |
| 230 | + stacked> |
| 231 | + </b-form-radio-group> |
230 | 232 | </b-form-fieldset> |
231 | 233 | <b-form-fieldset |
232 | 234 | label="Inline radios" |
233 | 235 | :label-cols="3" |
234 | 236 | :horizontal="true"> |
235 | | - <b-form-radio |
| 237 | + <b-form-radio-group |
236 | 238 | :plain="true" |
237 | 239 | :options="[ |
238 | 240 | {text: 'Option 1 ',value: '1'}, |
239 | 241 | {text: 'Option 2 ',value: '2'}, |
240 | 242 | {text: 'Option 3 ',value: '3'} |
241 | 243 | ]" |
242 | | - value="1"></b-form-radio> |
| 244 | + value="1"> |
| 245 | + </b-form-radio-group> |
243 | 246 | </b-form-fieldset> |
244 | 247 | <b-form-fieldset |
245 | 248 | label="Inline radios - custom" |
246 | 249 | :label-cols="3" |
247 | 250 | :horizontal="true"> |
248 | | - <b-form-radio |
| 251 | + <b-form-radio-group |
249 | 252 | :options="[ |
250 | 253 | {text: 'Option 1',value: '1'}, |
251 | 254 | {text: 'Option 2',value: '2'}, |
252 | 255 | {text: 'Option 3',value: '3'} |
253 | 256 | ]" |
254 | | - value="1"></b-form-radio> |
| 257 | + value="1"> |
| 258 | + </b-form-radio-group> |
255 | 259 | </b-form-fieldset> |
256 | 260 | <b-form-fieldset |
257 | 261 | label="Checkboxes" |
|
460 | 464 | </div> |
461 | 465 | <div class="card-body"> |
462 | 466 | <div class="form-group"> |
463 | | - <label class="form-col-form-label" for="inputSuccess1">Input with success</label> |
| 467 | + <label class="col-form-label" for="inputSuccess1">Input with success</label> |
464 | 468 | <input type="text" class="form-control is-valid" id="inputSuccess1"> |
465 | 469 | </div> |
466 | 470 | <div class="form-group"> |
467 | | - <label class="form-col-form-label" for="inputError1">Input with error</label> |
| 471 | + <label class="col-form-label" for="inputError1">Input with error</label> |
468 | 472 | <input type="text" class="form-control is-invalid" id="inputError1"> |
469 | 473 | <div class="invalid-feedback"> |
470 | 474 | Please provide a valid informations. |
|
0 commit comments