只用css样式实现

    1. <style>
    2. input{
    3. width: 30px;
    4. height: 30px;
    5. }
    6. input::after{
    7. content: url('images/unshift.png');
    8. }
    9. input:checked::after{
    10. content: url('images/shift.png');
    11. }
    12. </style>
    13. <input type="checkbox"><label>vue</label>