vue 路由demo

简介:
复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>http://www.zhinengshe.com</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="app">
  <h1>Hello App!</h1>
  <p>
    <router-link to="/foo">Go to Foo</router-link>
    <router-link to="/bar">Go to Bar</router-link>
    <router-link to="/user/1">Go to user1</router-link>
    <router-link to="/user/2/clas">Go to user2</router-link>
    <router-link to="/user/3/clas/3">Go to user3</router-link>
    <router-link to="/redect">redirect</router-link>
    <router-link to="/redectname">redirectname</router-link>
  </p>
  <router-view></router-view>
</div>

<script>
    const Bar = { 
        template: '<div>Bar</div>',
        beforeRouteEnter(to,from,next){
            console.log('this,,Bar-beforeRouteEnter');
        },
        beforeRouterUpdate(to,from,next){
            console.log('this,,Bar-beforeRouterUpdate');
        },
        beforeRouterLeave(to,from,next){
            console.log('this,,Bar-beforeRouterLeave');
        }
    };
    
    const Foo = { 
        template: `<div>Foo
        <p>
            <router-link :to="{name:'useruser',params:{grade:111,clas:222}}">foo1</router-link>
            <router-link to="/foo/foo2/456">foo2</router-link>
            -----------------
            <router-view></router-view>
            -----------------
        </p>
        </div>`,
        beforeRouteEnter(to,from,next){
            console.log(`this,,Foo-beforeRouteEnter`);
        },
        beforeRouterUpdate(to,from,next){
            console.log('this,,Foo-beforeRouterUpdate');
        },
        beforeRouterLeave(to,from,next){
            console.log('this,,Foo-beforeRouterLeave');
        }
    };
    
    const foo1 = { 
        name:'foo1',
        template: '<div>foo1 + {{$route.params}}</div>',
    };
    
    const foo2 = { 
        name:'foo2',
        template: '<div>foo2 + {{$route.params}}</div>',
    };

    const USER = { 
        template: '<div>USER + {{$route.params}}</div>',
    };
    
    const BOSS = { 
        template: '<div>BOSS + {{$route.params}}</div>',
    };

    const NULL = { 
        template: '<div>NULL + {{$route.params}}</div>',
    };

    const USERERROR = { 
        template: '<div>USERERROR + {{$route.params}}</div>',
    };
    
    const User = {
        template:
        `<div>
            user + {{$route.params}}
            <router-link to="/user/1/USER">USER</router-link>
            <router-link to="/user/1/BOSS">BOSS</router-link>
            <router-view name="a"></router-view>
            <router-view name="b"></router-view>
        </div>`,
        watch:{
            '$route':function(to,from){
                //console.log(to);
                //console.log(from);
            }
        },
    };
    
    const routes = [
      {
        path:'/redect',
        redirect:'/bar',
      },
      {
        path:'/redectname',
        redirect:{name:'ffoooo11',params:{id:123}},
      },
      { 
        path: '/foo', 
        component: Foo,
        name:'ffoooo',
        children:[
            {
                path:'foo1/:id',
                component:foo1,
                name:'ffoooo11'
            },
            {
                path:'foo2/:name',
                component:foo2,
            },
        ]
      },
      { 
        path: '/bar', 
        alias:'/a/f/0d/e/r',
        component: Bar
      },
      { 
        path: '/USER', 
        component: USERERROR ,
      },
      { 
        path: '/user/:grade', 
        component: User,
        children:[
            {
                path:'USER',
                components:{
                    a:USER,
                    b:BOSS
                }
            }
            ,
            {
                path:'BOSS',
                components:{
                    a:BOSS,
                    b:User
                }
            }
        ]
        
      },
      { path: '/user/:grade/clas', component: User },
      { 
        path: '/user/:grade/clas/:clas', 
        component: User,
        name:'useruser'
      },
      { path:'*',component:NULL }
    ];

    const router = new VueRouter({
        //mode: 'history',
        routes
    });

    router.beforeEach( (to,from,next) => {
        /*console.log(1);
        console.log(to);
        console.log(from);
        console.log(next);
        console.log(2);*/
    });
    
    const app = new Vue({
      router
    }).$mount('#app');
</script>
</body>
</html>
复制代码

 


本文转自农夫山泉别墅博客园博客,原文链接:http://www.cnblogs.com/yaowen/p/7130664.html,如需转载请自行联系原作者

相关文章
|
25天前
|
JavaScript API 开发者
Vue是如何进行组件化的
Vue是如何进行组件化的
|
27天前
|
JavaScript 前端开发 开发者
vue 数据驱动视图
总之,Vue 数据驱动视图是一种先进的理念和技术,它为前端开发带来了巨大的便利和优势。通过理解和应用这一特性,开发者能够构建出更加动态、高效、用户体验良好的前端应用。在不断发展的前端领域中,数据驱动视图将继续发挥重要作用,推动着应用界面的不断创新和进化。
|
1天前
|
JavaScript 关系型数据库 MySQL
基于VUE的校园二手交易平台系统设计与实现毕业设计论文模板
基于Vue的校园二手交易平台是一款专为校园用户设计的在线交易系统,提供简洁高效、安全可靠的二手商品买卖环境。平台利用Vue框架的响应式数据绑定和组件化特性,实现用户友好的界面,方便商品浏览、发布与管理。该系统采用Node.js、MySQL及B/S架构,确保稳定性和多功能模块设计,涵盖管理员和用户功能模块,促进物品循环使用,降低开销,提升环保意识,助力绿色校园文化建设。
|
28天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱前端的大一学生,专注于JavaScript与Vue,正向全栈进发。博客分享Vue学习心得、命令式与声明式编程对比、列表展示及计数器案例等。关注我,持续更新中!🎉🎉🎉
32 1
vue学习第一章
|
28天前
|
JavaScript 前端开发 索引
vue学习第三章
欢迎来到瑞雨溪的博客,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中的v-bind指令,包括基本使用、动态绑定class及style等,希望能为你的前端学习之路提供帮助。持续关注,更多精彩内容即将呈现!🎉🎉🎉
26 1
vue学习第三章
|
28天前
|
缓存 JavaScript 前端开发
vue学习第四章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中计算属性的基本与复杂使用、setter/getter、与methods的对比及与侦听器的总结。如果你觉得有用,请关注我,将持续更新更多优质内容!🎉🎉🎉
35 1
vue学习第四章
|
25天前
|
JavaScript 前端开发 开发者
Vue是如何劫持响应式对象的
Vue是如何劫持响应式对象的
23 1
|
25天前
|
JavaScript 前端开发 API
介绍一下Vue中的响应式原理
介绍一下Vue中的响应式原理
27 1
|
25天前
|
JavaScript 前端开发 开发者
Vue是如何进行组件化的
Vue是如何进行组件化的
|
25天前
|
存储 JavaScript 前端开发
介绍一下Vue的核心功能
介绍一下Vue的核心功能