我的 Vue router 配置是这样的
routes: [
{
path: '/',
name: 'Index',
component: Index,
},
{
path: '/hello',
name: 'Hello',
component: Hello,
},
{
path: '/about',
name: 'About',
component: About,
},
]
假如我访问的地址是 http://localhost/#/hello
我能获取到与路径 /hello 对应的 name 值 Hello 吗?
this.$route.name