Answers for "page reload button using angular"

0

page reload button using angular

at template use event buinding:
	(click)="reloadCurrentPage()"
inside the .ts file, add the function,
reloadCurrentPage() {
    window.location.reload();
   }
Posted by: Guest on May-06-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language