0👍
When looking at your bootstrap.js, it seems you are doing Vue.use(‘VueRouter’)
. When calling the use
method, you need to pass it the VueRouter object you imported, and not a string literal.
Source:stackexchange.com
0👍
When looking at your bootstrap.js, it seems you are doing Vue.use(‘VueRouter’)
. When calling the use
method, you need to pass it the VueRouter object you imported, and not a string literal.