|
187 | 187 | :custom="key > 1"
|
188 | 188 | :name="`Option 1${key}`"
|
189 | 189 | :checked="Math.random() > 0.6"
|
190 |
| - :class="key % 2 === 1 ? 'form-check-inline' : ''" |
| 190 | + :inline="key % 2 === 1" |
191 | 191 | />
|
192 | 192 | </CCol>
|
193 | 193 | </div>
|
|
207 | 207 | :custom="key > 1"
|
208 | 208 | :name="`Option 1${key}`"
|
209 | 209 | checked="Option 1"
|
210 |
| - :class="key % 2 === 1 ? 'form-check-inline' : ''" |
| 210 | + :inline="key % 2 === 1" |
211 | 211 | />
|
212 | 212 | </CCol>
|
213 | 213 | </div>
|
|
474 | 474 | <CCardBody>
|
475 | 475 | <CFormInput
|
476 | 476 | placeholder="Username"
|
477 |
| - prepend="<i class='fa fa-user'></i>" |
| 477 | + prependHtml="<i class='fa fa-user'></i>" |
478 | 478 | />
|
479 | 479 | <CFormInput
|
480 | 480 | type="email"
|
481 | 481 | placeholder="Email"
|
482 | 482 | autocomplete="email"
|
483 |
| - append="<i class='fa fa-envelope-o'></i>" |
| 483 | + appendHtml="<i class='fa fa-envelope-o'></i>" |
484 | 484 | />
|
485 | 485 | <CFormInput
|
486 |
| - prepend="<i class='fa fa-euro'></i>" |
| 486 | + prependHtml="<i class='fa fa-euro'></i>" |
487 | 487 | placeholder="ex. $1.000.000"
|
488 |
| - append=".00" |
| 488 | + appendHtml=".00" |
489 | 489 | />
|
490 | 490 | </CCardBody>
|
491 | 491 | <CCardFooter>
|
|
542 | 542 | <CFormInput placeholder="Username">
|
543 | 543 | <template #prepend>
|
544 | 544 | <CDropdown
|
545 |
| - buttonContent="Action" |
| 545 | + buttonHtml="Action" |
546 | 546 | variant="primary"
|
547 | 547 | >
|
548 | 548 | <CDropdownItem>Action</CDropdownItem>
|
|
559 | 559 | >
|
560 | 560 | <template #append>
|
561 | 561 | <CDropdown
|
562 |
| - buttonContent="Action" |
| 562 | + buttonHtml="Action" |
563 | 563 | variant="primary"
|
564 | 564 | right
|
565 | 565 | >
|
|
574 | 574 |
|
575 | 575 | <template #prepend>
|
576 | 576 | <CDropdown
|
577 |
| - buttonContent="Split" |
| 577 | + buttonHtml="Split" |
578 | 578 | variant="primary"
|
579 | 579 | split
|
580 | 580 | >
|
|
587 | 587 |
|
588 | 588 | <template #append>
|
589 | 589 | <CDropdown
|
590 |
| - buttonContent="Action" |
| 590 | + buttonHtml="Action" |
591 | 591 | variant="primary"
|
592 | 592 | right
|
593 | 593 | >
|
|
674 | 674 | <CCardBody>
|
675 | 675 | <CForm>
|
676 | 676 | <CFormInput
|
677 |
| - prepend="Username" |
678 |
| - append="<i class='fa fa-user'></i>" |
| 677 | + prependHtml="Username" |
| 678 | + appendHtml="<i class='fa fa-user'></i>" |
679 | 679 | />
|
680 | 680 | <CFormInput
|
681 |
| - prepend="Email" |
| 681 | + prependHtml="Email" |
682 | 682 | type="email"
|
683 | 683 | autocomplete="email"
|
684 |
| - append="<i class='fa fa-envelope'></i>" |
| 684 | + appendHtml="<i class='fa fa-envelope'></i>" |
685 | 685 | />
|
686 | 686 | <CFormInput
|
687 |
| - prepend="Password" |
| 687 | + prependHtml="Password" |
688 | 688 | type="password"
|
689 | 689 | autocomplete="current-password"
|
690 |
| - append="<i class='fa fa-asterisk'></i>" |
| 690 | + appendHtml="<i class='fa fa-asterisk'></i>" |
691 | 691 | />
|
692 | 692 | <div class="form-group form-actions">
|
693 | 693 | <CButton type="submit" size="sm" variant="primary">Submit</CButton>
|
|
705 | 705 | <CForm>
|
706 | 706 | <CFormInput
|
707 | 707 | placeholder="Username"
|
708 |
| - append="<i class='fa fa-user'></i>" |
| 708 | + appendHtml="<i class='fa fa-user'></i>" |
709 | 709 | />
|
710 | 710 | <CFormInput
|
711 | 711 | placeholder="Email"
|
712 | 712 | type="email"
|
713 | 713 | autocomplete="email"
|
714 |
| - append="<i class='fa fa-envelope'></i>" |
| 714 | + appendHtml="<i class='fa fa-envelope'></i>" |
715 | 715 | />
|
716 | 716 | <CFormInput
|
717 | 717 | placeholder="Password"
|
718 | 718 | type="password"
|
719 | 719 | autocomplete="current-password"
|
720 |
| - append="<i class='fa fa-asterisk'></i>" |
| 720 | + appendHtml="<i class='fa fa-asterisk'></i>" |
721 | 721 | />
|
722 | 722 | <div class="form-group form-actions">
|
723 | 723 | <CButton type="submit" class="btn btn-sm btn-secondary">Submit</CButton>
|
|
735 | 735 | <CForm>
|
736 | 736 | <CFormInput
|
737 | 737 | placeholder="Username"
|
738 |
| - prepend="<i class='fa fa-user'></i>" |
| 738 | + prependHtml="<i class='fa fa-user'></i>" |
739 | 739 | />
|
740 | 740 | <CFormInput
|
741 | 741 | placeholder="Email"
|
742 | 742 | type="email"
|
743 | 743 | autocomplete="email"
|
744 |
| - prepend="<i class='fa fa-envelope'></i>" |
| 744 | + prependHtml="<i class='fa fa-envelope'></i>" |
745 | 745 | />
|
746 | 746 | <CFormInput
|
747 | 747 | placeholder="Password"
|
748 | 748 | type="password"
|
749 | 749 | autocomplete="current-password"
|
750 |
| - prepend="<i class='fa fa-asterisk'></i>" |
| 750 | + prependHtml="<i class='fa fa-asterisk'></i>" |
751 | 751 | />
|
752 | 752 | <div class="form-group form-actions">
|
753 | 753 | <CButton type="submit" size="sm" variant="success">Submit</CButton>
|
|
782 | 782 | <CCardBody>
|
783 | 783 | <CFormInput
|
784 | 784 | label="Prepended text"
|
785 |
| - prepend="@" |
| 785 | + prependHtml="@" |
786 | 786 | description="Here's some help text"
|
787 | 787 | type="email"
|
788 | 788 | autocomplete="email"
|
789 | 789 | />
|
790 | 790 | <CFormInput
|
791 | 791 | label="Appended text"
|
792 |
| - append=".00" |
| 792 | + appendHtml=".00" |
793 | 793 | description="Here's some help text"
|
794 | 794 | />
|
795 | 795 | <CFormInput
|
796 |
| - label="Appended text" |
797 |
| - prepend="$" |
798 |
| - append=".00" |
| 796 | + label="Appended and prepended text" |
| 797 | + prependHtml="$" |
| 798 | + appendHtml=".00" |
799 | 799 | description="Here's some help text"
|
800 | 800 | />
|
801 | 801 | <CFormInput
|
|
0 commit comments