router-link怎么直接写路径
时间: 2023-07-01 18:06:43 浏览: 125
详谈vue中router-link和传统a链接的区别
5星 · 资源好评率100%
在Vue.js中,使用router-link组件可以方便地进行路由跳转。如果你想要直接写路径,可以使用router.push()方法进行跳转,具体代码如下:
```
<template>
<div>
<button @click="goToHome">Go to Home</button>
</div>
</template>
<script>
export default {
methods: {
goToHome() {
this.$router.push('/home');
}
}
};
</script>
```
在上面的代码中,我们通过点击按钮来调用goToHome()方法,然后通过this.$router.push()方法来实现路由跳转。其中,'/home'就是我们要跳转的路径。
阅读全文