• vue-router 参数传递


    App.vue

    <template>
      <div id="nav">
        <!-- 导航 -->
        <router-link to="/" active-class="current" replace>Home</router-link> |
        <router-link to="/about" active-class="current" replace>About</router-link> |
        <router-link to="/test1_bak">Test1_bak</router-link> |
        <router-link to="/test1">Test1</router-link> |
        <router-link to="/test2">Test2</router-link> |
        <router-link :to="'/test3/'+test3_id">Test3</router-link> |
        <router-link to="/test4">Test4</router-link> |
        <router-link :to="{path:'/test5',query:{name:'test5_name',site:'test5_site'}}">Test5</router-link>
      </div>
      <!-- 路由出口 -->
      <router-view/>
    </template>
    <script>
    import {ref} from "vue";
    
    export default {
      setup(){
        const test3_id = ref('001')
    
        return{
          test3_id
        }
      }
    
    }
    </script>
    <style>
    #app {
      font-family: Avenir, Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-align: center;
      color: #2c3e50;
    }
    
    #nav {
      padding: 10px;
      background-color: lightskyblue;
    }
    
    #nav a {
      font-weight: bold;
      color: #2c3e50;
    }
    
    /* 默认选中样式类 */
    #nav a.router-link-exact-active {
      color:orangered;
    }
    
    .current{
      font-size: 24px;
      font-weight: bolder;
    }
    
    
    </style>

    Test5.vue

    <template>
      <div id="test4_body">
        <div id="header"><h1>上标题</h1></div>
        <div id="body">
          <div id="navl">
            左导航
            <div>
              Test5
              <div>
                  <button @click="test3()">Test3</button>&nbsp;
                  <button @click="test4()">Test4</button>
              </div>
            </div>
          </div>
          <div id="main">
            中内容
            {{$route.query}} ---
            {{$route.query.name}} ---
            {{$route.query.site}}
            <router-view></router-view>
          </div>
          <div id="navr">右导航</div>
        </div>
        <div id="footer"><p>下版权</p></div>
      </div>
    </template>
    <script>
    import {useRoute} from 'vue-router';
    import {useRouter} from 'vue-router'
    import {ref} from "vue";
    export default {
      name: 'Test5',
      setup(){
          const test3_id = ref('001');
          const router = useRouter();
    
          let route = useRoute();
          console.log(route.query);
          console.log(route.query.name);
    
          const test3 = () => {
            router.push('/test3/'+test3_id.value);
          }
    
          const test4 = () => {
            router.push(
                {
                  path:'/test4',
                  query:{
                    name:'test4_name',
                    site:'test4_site'
                  }
                });
          }
    
          return {
            test3,
            test4
          }
      }
    }
    </script>
    
    <!-- Add "scoped" attribute to limit CSS to this component only -->
    <style scoped>
    /* CSS Document */
    /**{*/
    /*  margin:0;*/
    /*  padding:0;*/
    /*}*/
    /*body{*/
    /*  margin:10px;*/
    /*}*/
    #test4_body{
      margin:0;
      padding:0;
      /*margin:10px;*/
      /*600px;*/
      /*height: 100%;*/
      /*margin:0 auto;*/
      /*height:400px;*/
      height:auto;
      min-height:500px;
      /*800px;*/
      background:#bbeeeb;
      margin:0 auto;
    }
    
    #header{
      border:1px solid black;
      /*600px;*/
      height:60px;
      margin:0 auto;
      margin-bottom:10px;
    }
    #header h1{
      height:60px;
      line-height:60px;
      font-size:16px;
      text-align:center;
    }
    #body{
      /*600px;*/
      margin:0 auto;
    }
    #navl{
      border:1px solid black;
      width:150px;
      height:auto;
      float:left;
      margin-bottom:10px;
      background:lightcyan;
      overflow: auto;
    }
    #main{
      border:1px solid black;
      /*294px;!*边框也算一个像素*!*/
      width: auto;
      min-width: 300px;
      height:auto;
      float:left;
      margin-bottom:10px;
      background:lightblue;
    }
    #navr{
      border:1px solid black;
      /*150px;*/
      /*height:500px;*/
      float:right;
      margin-bottom:10px;
      background:lightyellow;
    }
    #footer{
      border:1px solid black;
      /*600px;*/
      height:60px;
      line-height:60px;
      margin:0 auto;
      text-align:center;
      clear:both;
    }
    </style>

    index.js

    //引入
    import { createRouter, createWebHashHistory } from 'vue-router'
    // import Home from '../views/Home.vue'
    // import Test3 from '../views/Test3.vue'
    
    //路由懒加载
    const Home = () => import('../views/Home.vue');
    const Test3 = () => import('../views/Test3.vue');
    const Test4 = () => import('../views/Test4.vue');
    const Test4_1 = () =>  import("../components/Test4-1");
    const Test4_2 = () =>  import("../components/Test4-2");
    
    const Test5 = () => import('../views/Test5.vue');
    
    //创建路由对象
    const routes = [
      {
        path: '/',
        name: 'Home',
        component: Home
      },
        //路由重定向
      {
        path: '/home',
        redirect:'/'
      },
      {
        path: '/about',
        name: 'About',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
      },
      {
        path: '/test1_bak',
        name: 'Test1_bak',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: () => import(/* webpackChunkName: "about" */ '../views/Test1_bak.vue')
      },
      {
        path: '/test1',
        name: 'Test1',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: () => import(/* webpackChunkName: "about" */ '../views/Test1.vue')
      },
      {
        path: '/test2',
        name: 'Test2',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: () => import(/* webpackChunkName: "about" */ '../views/Test2.vue')
      },
      {
        path: '/test3/:id',
        name: 'Test3',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: Test3
      },
      {
        path: '/test4',
        redirect: '/test4/test4-1',
        name: 'Test4',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: Test4,
        children:[
          {path:'test4-1',component:Test4_1},
          {path:'test4-2',component:Test4_2}
        ]
      },
      {
        path: '/test5',
        name: 'Test5',
        // route level code-splitting
        // this generates a separate chunk (about.[hash].js) for this route
        // which is lazy-loaded when the route is visited.
        component: Test5
      },
    ]
    
    const router = createRouter({
      history: createWebHashHistory(),
      linkActiveClass:'current',
      routes
    })
    
    //导出路由对象
    export default router
  • 相关阅读:
    CF666E Forensic Examination 广义后缀自动机 + 线段树合并 + 树上倍增
    NOI2018 你的名字 后缀自动机 + 线段树合并 + 可持久化
    [NOI2018]你的名字(68pts) 后缀自动机
    [SDOI2016]生成魔咒 后缀自动机
    洛谷P3369 【模板】普通平衡树 01trie/骚操作
    BZOJ2161: 布娃娃 整体二分
    超市购物功能,会员卡功能,会员卡积分查询功能,会员卡奖品功能,自己练手函数程序
    可变长参数,函数的嵌套,名称空间,关键字
    函数基础,函数返回值,函数调用的3中方式,形参与实参
    文件的详细操作
  • 原文地址:https://www.cnblogs.com/mingforyou/p/15227506.html
Copyright © 2020-2023  润新知