[Vuejs]-How do I create nested routing in vue? Url is pointed but the page isnt loading

0👍

Try to remove the slash in front of AddNewDetail.
If you write a slash in front of it, it becomes a root path in your url, so I guess you could reach it under foo.bar/AddNewDetail. If you want to reach under foo.bar/About/AddNewDetail then write without /

Leave a comment