美文网首页
vue2.0实现路由传参

vue2.0实现路由传参

作者: smallBear | 来源:发表于2018-01-24 17:54 被阅读0次

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>vue2.0路由传参</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<style>
.router-link-active{
font-size: 20px;
color:#f60;
}
</style>
<script src="vue.js"></script>
<script src="vue-router.js"></script>
</head>
<body>
<div id="box">
<div>
<router-link to="/home">主页</router-link>
<router-link to="/user">用户</router-link>
</div>
<div>
<router-view></router-view>
</div>
</div>

<script>
    //组件
    var Home={
        template:'<h3>我是主页</h3>'
    };
    var User={
        template:`
            <div>
                <h3>我是用户信息</h3>
                <ul>
                    <li><router-link to="/user/strive/age/10">Strive</router-link></li>
                    <li><router-link to="/user/blue/age/80">Blue</router-link></li>
                    <li><router-link to="/user/eric/age/70">Eric</router-link></li>
                </ul>
                <div>
                    <router-view></router-view>
                </div>
            </div>
        `
    };
    var UserDetail={
        template:'<div>{{$route.params}}</div>'
    };

    //配置路由
    const routes=[
        {path:'/home', component:Home},
        {
            path:'/user',
            component:User,
            children:[
                {path:':username/age/:age', component:UserDetail}
            ]
        },
        {path:'*', redirect:'/home'}  //404
    ];

    //生成路由实例
    const router=new VueRouter({
        routes
    });


    //最后挂到vue上
    new Vue({
        router,
        el:'#box'
    });
</script>

</body>
</html>

相关文章

网友评论

      本文标题:vue2.0实现路由传参

      本文链接:https://www.haomeiwen.com/subject/onouaxtx.html