vue框架下按钮怎么跳转
在vue框架中,可以通过以下方式为按钮添加跳转功能:使用v-on指令和router-link组件:v-on:click="gotohome()"使用router.push方法:this.$router.push({ name: 'profile' });注意事项:使用router-link组件需导入vue-router,router.push方法仅可用于组件内部,使用路由名称跳转需在路由配置中定义路由名称。
Vue框架下按钮跳转
在Vue框架中,可以通过v-on指令配合router-link组件或router.push方法来为按钮添加跳转功能。
使用v-on和router-link组件
<button v-on:click="goToHome">回到主页</button>
methods: { goToHome() { this.$router.push('/'); // "/" 为主页路由 }}
使用router.push方法
立即学习“前端免费学习笔记(深入)”;
<button>查看个人资料</button>
methods: { goToProfile() { this.$router.push({ name: 'profile' }); // "profile" 为个人资料路由的名称 }}
注意事项