关于vue-router:P29-vue3-js页面跳转-和替换当前位置

1次阅读

共计 2971 个字符,预计需要花费 8 分钟才能阅读完成。

js 页面跳转

App.vue

<script setup>


</script>

<template>
  <div>
    <h1>Hello App!</h1>

      <!-- 应用 router-link 组件进行导航 -->
      <!-- 通过传递 `to` 来指定链接 -->
      <!--`<router-link>` 将出现一个带有正确 `href` 属性的 `<a>` 标签 -->
      <router-link to="/">Go to Home</router-link>
      <p>---</p>
      <router-link to="/about">Go to About</router-link>
       <p>---</p>
      <router-link to="/user/56">Go to User</router-link>
    <p>---</p>
    <router-link to="/news/56">Go to User</router-link>
    <p>---</p>
    <router-link to="/parent">Go to Parent</router-link>
    <p>---</p>
    <router-link to="/page">Go to Page</router-link>

    <!-- 路由进口 -->
    <!-- 路由匹配到的组件将渲染在这里 -->
    <router-view></router-view>


  </div>
</template>

Page.vue

<template>
  <div>
    <h2>PAge web</h2>
    <button @click="goPage"> 跳转页面 </button>
  </div>

</template>

<script>
export default {
  name: "Page",
  methods:{goPage: function (){console.log("Page-function")
      console.log(this.$router)
      //this.$router.push('/')
      this.$router.push({name:"news",params:{id:56}})
      //this.$router.push({path:"/user/56"})
      // if(11==11){//   this.$router.push('/parent')
      // }
    }
  }
}
</script>

<style scoped>

</style>

index.js

// 1. 定义路由组件.
// 也能够从其余文件导入
import Home from "../views/Home.vue";
import About from "../views/About.vue";
import User from "../views/User.vue";
import NotFound from "../views/NotFound.vue";
import News from "../views/News.vue";
import Parent from "../views/Parent.vue";
import Styleone from "../views/Styleone.vue";
import Styletwo from "../views/Styletwo.vue";
import Page from "../views/Page.vue";


import {createRouter, createWebHashHistory} from "vue-router";


// 2. 定义一些路由
// 每个路由都须要映射到一个组件。// 咱们前面再探讨嵌套路由。const routes = [{ path: '/', component: Home},
    {path: '/about', component: About},
    {path: '/user/:id', component: User},
    {
        name: "news",
        //path: '/news/:id(\\d+)',// 正则匹配
        // path: '/news/:id+',// 多个参数
        //path: '/news/:id+',// 参数可有可无
        //path: '/news/:id*',// 参数可反复叠加
        path: '/news/:id?',// 参数不可反复叠加
        component: News
    },
    {path: '/:path(.*)',
        component: NotFound
    },// 应用正则,匹配任意 path
    {
        path: "/parent",
        component: Parent,
        children: [
            {
                path: "styleone",
                component: Styleone
            },
            {
                path: "styletwo",
                component: Styletwo
            }
        ]
    },
    {
        path: "/page",
        component: Page
    }
]

// 3. 创立路由实例并传递 `routes` 配置
// 你能够在这里输出更多的配置,但咱们在这里
// 临时放弃简略
const router = createRouter({
    // 4. 外部提供了 history 模式的实现。为了简略起见,咱们在这里应用 hash 模式。history: createWebHashHistory(),
    routes, // `routes: routes` 的缩写
})


export default router

  • 通过对象

    <script>
    export default {
    name: "Page",
    methods:{goPage: function (){console.log("Page-function")
        console.log(this.$router)
        //this.$router.push('/')
        this.$router.push({name:"news",params:{id:56}})
        //this.$router.push({path:"/user/56"})
        // if(11==11){//   this.$router.push('/parent')
        // }
      }
    }
    }
    </script>
  • 带参数

    
    <script>
    export default {
    name: "Page",
    methods:{goPage: function (){console.log("Page-function")
        console.log(this.$router)
        this.$router.push({path:"/user/56"})
      }
    }
    }
    </script>
<script>
export default {
  name: "Page",
  methods:{goPage: function (){console.log("Page-function")
      console.log(this.$router)
      //this.$router.push('/')
      //this.$router.push({path:"/user/56"})
      if(11==11){this.$router.push('/parent')
      }
    }
  }
}
</script>
  • 带问号
<script>
export default {
  name: "Page",
  methods:{goPage: function (){console.log("Page-function")
      console.log(this.$router)
      this.$router.push({path:"/about",query:{name:"tom"}})
    }
  }
}
</script>

替换以后地位

正文完
 0