1.1.2 • Published 7 years ago

@avatsaev/ngx-counter v1.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

Install

npm i -S @avatsaev/ngx-counter

Setup

import the lib:

import {CounterModule} from '@avatsaev/ngx-counter';

Import to your Angular module:

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    CounterModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Usage

<app-counter [counter]="2"></app-counter>