checkbox-wf
v1.0.1
Published
This is a angular2 checkbox
Maintainers
Readme
checkbox
Custom checkbox to angular 2
Example
import { Component } from "@angular/core";
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
selected: boolean;
title: string = 'Check';
disable: boolean = false;
} <checkbox [disableValue]="disable"
[(ngModel)]="selected"
[label]="title">
</checkbox>
