[Vuejs]-Why Vue-Router doesn't work with "." symbol?

0👍

It’s a common in a web server that if you put . in a url path it will returning a file. In your case it will calling a com.page file which is not available.
Perhaps you want to use dash ‘-‘ instead of dot ‘.’ ?

Leave a comment