I want load module without change url in angular 5.
Is it possible to load module with lazy loading on click without change a url and also do not change route in angular5?
Asked
Active
Viewed 400 times
1

Parth Godhani
- 209
- 3
- 18
1 Answers
1
You can using
{ skipLocationChange: true }
while you navigation to route. It will navigates without pushing a new state into history.
Refer :

Pardeep Jain
- 84,110
- 37
- 165
- 215
-
2yes, exsetly like that but content which is shown that will be lazy loded is it possible? – Parth Godhani Apr 27 '18 at 12:51