通过VueRouter来实现组件之间的跳转:参数的传递,具体内容如下
login ---用户名--->main
①明确发送方和接收方
②配置接收方的路由地址
{path:'/myTest',component:TestComponent}
-->
{path:'/myTest/:id',component:TestComponent}
③接收方获取传递来的数据
this.$route.params.id
④跳转的时候,发送参数
this.$router.push('/myTest/20')
<router-link :to="'/myTest'+id">跳转</router-link>
代码:
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>传参</title> <script src="/UploadFiles/2021-04-02/vue.js"><!doctype html> <html> <head> <meta charset="UTF-8"> <title>传参练习</title> <script src="/UploadFiles/2021-04-02/vue.js">关于vue.js的学习教程,请大家点击专题vue.js组件学习教程、Vue.js前端组件学习教程进行学习。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。