阅读量:3
Vue中的router-link是一个用于导航的组件,它可以在应用中生成一个链接,当点击链接时,可以触发路由的跳转。
router-link的用法如下:
- 导入router-link组件:
import { RouterLink } from 'vue-router'
- 在模板中使用router-link组件:
<router-link to="/path">Link Text</router-link>
其中,to属性指定要跳转的路径。
- 可以使用具名路由的方式跳转:
<router-link :to="{ name: 'routeName' }">Link Text</router-link>
其中,name属性指定要跳转的具名路由名称。
- 可以通过传递props来设置路由参数:
<router-link :to="{ name: 'routeName', params: { id: 1 }}">Link Text</router-link>
其中,params属性指定要传递的路由参数。
- 可以通过设置replace属性来替换当前路由而不是添加新的历史记录:
<router-link to="/path" replace>Link Text</router-link>
- 可以通过设置active-class属性来自定义活动状态的CSS类名:
<router-link to="/path" active-class="active">Link Text</router-link>
其中,active-class属性指定活动状态的CSS类名。
- 可以使用exact属性来指定只有在精确匹配时才应用活动状态的CSS类名:
<router-link to="/path" exact>Link Text</router-link>
以上就是Vue中router-link的基本用法。它可以用于生成导航链接并触发路由的跳转。