我正在尝试在Vue中构建多页应用程序。
我想在某个操作上路由到另一个html页面(从index.html到dashboard.html)。
在我的Vue route.js中
path : '/dashboard',
name:'dashboard',
component : Dashboard //here Dashboard means I want to go to dashboard.html page not a vue like Dashboard.vue
},
并在我的模板中:
<router-link to="/dashboard">
<a href="#" class="nav-link">Go to dashboard</a>
</router-link>
如何实现此目标,或者还有其他方法可以在Vue中切换html页面?