继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Vue2.0路由学习探索总结---动态路由配置

resharpe
关注TA
已关注
手记 102
粉丝 7244
获赞 3476
Vue2.0路由学习探索总结---动态路由配置
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>动态路由配置</title>
    <script src="../vue.js"></script>
    <script src="../vue-router.js"></script>
    <style>
        .router-link-active {
            color: red
        }
    </style>
</head>
<body>
<div id="app">
    <p>
        <router-link to="/user/foo">/user/foo</router-link>
        <router-link to="/user/bar">/user/bar</router-link>
        <router-link to="/user/see">/user/see</router-link>
        <router-link to="/user/hello">/user/hello</router-link>
    </p>
    <router-view></router-view>
</div>
</body>
<script>
    const User = {
        template: `<div>User {{ $route.params.id }}</div>`
    };
    const router = new VueRouter({
        routes: [
            {path: '/user/:id', component: User}
            // 动态路径参数 以冒号开头,一个『路径参数』使用冒号 : 标记。当匹配到一个路由时,参数值会被设置到 this.$route.params
        ]
    });
    const app = new Vue({
        router
    }).$mount('#app')
</script>
</html>
打开App,阅读手记
5人推荐
发表评论
随时随地看视频慕课网APP