简析vue子路由参数传递与接收

广告:宝塔服务器面板,一键全能部署及管理,送你10850元礼包,点我领取~~~

简析vue子路由参数传递与接收

本篇文章给大家介绍有关vue路由:子路由,路由中参数的传递,希望对大家有帮助!

1.在idea中新建vue项目

2.main.js中修改

import Vue from 'vue'// import Router from './Router'     /*引用自同级Router.js*/import Router from './SonRouter'     /*引用自同级SonRouter.js*/
登录后复制

【相关推荐:vue.js视频教程】

3.src下新建文件SonRouter.js

/*子路由*/import Vue from 'vue'import VueRouter from 'vue-router'Vue.use(VueRouter)//声明模版,点击链接显示对应的内容const first = { template:'<div>first内容</div>'}const second = { template:'<div>second内容</div>'}const Home = { template:'<div>Home内容</div>'}const firstFirst = { template:'<div>firstFirst内容 {{$route.params.id}} {{$route.params.name}}</div>'}const firstSecond = { template:'<div>firstSecond内容 {{$route.params.id}} {{$route.params.name}}</div>'}//单独的写组件模版的时候可直接这样写,名称自定义const sonRunterTemplate ={  template:`      <div class="">            <h2>组件</h2>            <router-view class="red"></router-view>        </div>  `}//router自己定义名字const router = new VueRouter({  mode:'history',  base:__dirname, //当前的路径   dirname在node中指当前的本地路径  routes:[       //以数组的方式给出  [{},{}],多个的话一定是routes复数形式    {path:'/',name:'Home',component:Home},    {path:'/first',component:sonRunterTemplate,        children:[          {path:'/',name:'Home-First',component:first},          {path:'first',name:'Home-First-First',component:firstFirst},          {path:'second',name:'Home-First-Second',component:firstSecond}        ]    },    {path:'/second',name:'Home-Second',component:second}  ]})new Vue({  router,  template:`    <div id='r'>        <h1>导航</h1>        <p>{{$route.name}}</p>         <ol>            <li><router-link to="/">/</router-link></li>   <!--router-link存放路由链接的   to相当于href,表示链接到哪里-->            <li><router-link to="/first">first</router-link></li>                <ol>                    <li><router-link :to="{name:'Home-First-First',params:{id:147,name:'张三'}}">first</router-link></li>                    <li><router-link :to="{name:'Home-First-Second',params:{id:258,name:'李四'}}">second</router-link></li>                </ol>            <li><router-link to="/second">second</router-link></li>          </ol>          <router-view class="green"></router-view>   <!--规定整个路由显示在其中,class表示修饰的类-->    </div>    `}).$mount('#app')/*路由中参数的传递:    1.通过路由传参 name:'Home-First'   获取 <p>{{$route.name}}</p>    2.绑定to方式进行参数的传递  :to="{name:'Home-First-Second',params:{id:258,name:'李四'}}"  获取{{$route.params.id}} {{$route.params.name}}    *//*route 路线  $route.paramsrouter  路由routes  路由复数形式  一定是数组*/
登录后复制

运行结果:

以上就是简析vue子路由参数传递与接收的详细内容,更多请关注9543建站博客其它相关文章!

9543建站博客
一个专注于网站开发、微信开发的技术类纯净博客。
作者头像
admin创始人

肥猫,知名SEO博客站长,14年SEO经验。

上一篇:如何将Uniapp应用程序元素设置到手机顶端
下一篇:不是jquery选择器的是

发表评论

关闭广告
关闭广告