Vue路由 router-编程式 leve3

Vue路由 router-编程式 leve3

先点击一下搜索 然后再点击一下‘跳转到second即可看到效果’ 话不多说咱们直接上代码,老规矩你想知道的我都在注释中标明了,聪明的你肯定一看就懂!
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="/node_modules/vue/dist/vue.js"></script>
    <script src="/node_modules/vue-router/dist/vue-router.js"></script>
    <style>
        .active{
            font-weight: 600;
            color: red;
        }
    </style>
</head>
<body>
    <div id="app">
        <ul>
            <router-link tag="li" to="/position" active-class="active">一级菜单1</router-link>
            <router-link tag="li" to="/search" active-class="active">一级菜单2</router-link>
        </ul>
        <router-view></router-view>
        <!-- 定义一个方法 -->
        <button @click="goLink">跳转到second</button>
    </div>
    <script>
        const position = {
            template:`
                <div>
                    <router-link to="/position/first" active-class="active">二级菜单1</router-link>
                    <router-link to="/position/second" active-class="active">二级菜单2</router-link>
                    <router-view></router-view>
                </div>
            `
        }
        const search = {
            template:`
                <div>search</div>
            `
        }
        /* 这里配置我们的路由 */
        let router = new VueRouter({
            // mode:'hash',默认值
            //路由匹配一般会按顺序从上往下匹配
            routes:[
                {//这里也可以配置一下
                    path:'/',
                    redirect:'/position/second',
                },
                {
                    path:'/position',
                    component:position,
                    redirect:'/position/second',
                    children:[
                        {
                            path:'/position/first',
                            component:{
                                template:'<div>first</div>'
                            }
                        },
                        {
                            path:'/position/second',
                            name:'secondcc',//命名式路由 这个name用作标识 可以随便起
                            component:{
                                template:'<div>second</div>'
                            }
                        },
                    ]
                },
                {
                    path:'/search',
                    component:search
                },
                {
                    path:'*',//匹配一个404页,就是上面路由均匹配不到时
                    component:{
                        template:`
                            <h1>404 page not found!</h1>
                        `
                    }
                }
            ]
        })

        let vm = new Vue({
            router,
            el:'#app',
            methods:{
                goLink(){
                    // this.$router.push('/position/second')
                    // this.$router.push({
                    //     path:"/position/second"
                    // })

                    //命名式路由
                    // this.$router.push({
                    //     name:"secondcc"
                    // })

                    //也可以这么写
                    router.push({
                        name:"secondcc"
                    })
                }
            }
        })
    </script>
</body>
</html>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值