Checkbox angular material checked by default

前端 未结 10 1548
猫巷女王i
猫巷女王i 2021-02-11 19:47

I am trying to use an Angular Material checkbox, and set it by default as checked, but it is displayed as non-checked, what is wrong?



        
10条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-11 20:11

    this works for me in Angular 7

    // in component.ts
    checked: boolean = true;
    
    changeValue(value) {
        this.checked = !value;
    }
    
    // in component.html
    
       some Label
    
    

    I hope help someone ... greetings. let me know if someone have some easiest

提交回复
热议问题