You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an angular4 component when the page loads it shows the total visitors count increasing on the page.
How to communicate dynamic pass by using this plugin app.component.ts import { Component ,OnInit} from '@angular/core'; declare var $:any; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent implements OnInit{ totalvisitors = 1000; // dynamic value dayvisitors = 10; // dynamic value }
Else it is only support for angular1
The text was updated successfully, but these errors were encountered:
I have an angular4 component when the page loads it shows the total visitors count increasing on the page.
How to communicate dynamic pass by using this plugin
app.component.ts
import { Component ,OnInit} from '@angular/core'; declare var $:any; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent implements OnInit{ totalvisitors = 1000; // dynamic value dayvisitors = 10; // dynamic value }
Else it is only support for angular1
The text was updated successfully, but these errors were encountered: