search
HomeWeb Front-endVue.jsHow to implement front-end routing jump under Vue?
How to implement front-end routing jump under Vue?Jun 27, 2023 am 08:21 AM
vueJumprouting

Vue is an excellent front-end framework. In application development, front-end routing jump is a very common requirement. Vue provides rich functions to implement routing jumps. This article will introduce Vue's built-in routing implementation and the use of the third-party routing library Vue-Router.

1. Vue’s built-in routing implementation method

In Vue, you can use the built-in vue-router to implement front-end routing jumps.

  1. Install vue-router

Use npm command to install vue-router library:

npm install vue-router
  1. Create Vue Router object

Create a Vue Router object in the Vue project main file (eg: main.js) and bind it to the Vue instance. As shown below:

import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)
const router = new VueRouter({
  // 路由配置
})
new Vue({
  router
}).$mount('#app')

In the code, we first introduced vue-router and bound it to the Vue instance. Then a Vue Router object is created and placed in the Vue instance.

  1. Routing configuration

When creating a Vue Router object, you need to configure the routing. The configuration in Vue Router mainly includes routing paths, routing components, routing aliases, and any other parameters. The routing path corresponds to the path part in the URL, and the routing component defines the components to be displayed under the path.

For example, if we want to create a route for a page, we can write it like this when configuring the route:

const router = new VueRouter({
  routes: [
    {
      path: '/about',
      component: About
    }
  ]
})

Among them, the routing path is "/about" and the corresponding component is About.

  1. Route jump

With routing configuration, we can use Vue Router’s built-in route jump function. Vue Router provides the router-link tag and router.push method to implement route jumps.

1) Use the router-link tag

The router-link tag can be used in HTML templates to create a routing link. The router-link tag will automatically generate the correct URL based on the routing configuration.

For example:

<router-link to="/about">关于我们</router-link>

When you click on the About Us link, it will jump to the component page corresponding to the configured routing path "/about".

2) Use the router.push method

In addition to using the router-link tag, Vue Router also provides the router.push method to implement routing jumps.

For example:

this.$router.push('/about')

In the Vue component, we can use this.$router to obtain the Vue Router instance, and use the push method to implement the jump. This code will jump to the component page with the routing path "/about".

2. Vue-router

Vue-Router is an official router based on Vue.js. It is the routing manager officially released by Vue.js, which provides powerful functions, such as routing nesting, dynamic routing, lazy loading of routes, etc. Let's take a look at how to use Vue-Router to implement front-end routing jumps.

  1. Install Vue-Router

Before using Vue-Router, you need to install it into the project. We can install it using npm command.

npm install vue-router --save
  1. Create routing instance

When creating a Vue route, we can first configure the relevant routing information of the page components (including nested sub-components) that need to be jumped. into an array.

For example:

const routes = [
    {
        path: '/',
        component: Home
    },
    {
        path: '/about',
        component: About
    },
    {
        path: '/user/:id',
        component: User
    }
]

This array defines three routing information. The first routing information defines the default jump page as Home, and the second routing information defines the jump page as Home. About, the third routing information defines the jump page as User, and the routing information needs to pass the id parameter.

Next, we can create a routing instance through the createRouter method of Vue-Router.

For example:

import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
    history: createWebHistory(),
    routes
})

In the code, we use the createRouter method of Vue-Router to create a routing instance and define the routing history management method and routing information. Among them, createWebHistory means using HTML5 History API for routing management.

  1. Register routing

After creating the routing instance, we need to register the routing instance into the Vue application instance.

For example:

import { createApp } from 'vue'
import App from './App.vue'
import { router } from './router'
createApp(App)
.use(router)
.mount('#app')

In the code, we register the routing instance into the Vue application instance through the use method of createApp.

In addition to registering routing instances, we can also implement routing jumps through the routing navigation component router-view and routing link component router-link provided by Vue-Router.

For example:

<router-link to="/">Home</router-link>
<router-link to="/about">About</router-link>
<router-link :to="{name: 'user', params: {id: userId}}">User</router-link>
<router-view></router-view>

In the code, we use the router-link tag to create three jump links, and use the router-view tag to display the corresponding content of the routing component. The third link needs to pass a dynamic parameter id.

  1. Route jump

Vue-Router provides a variety of ways to implement route jump, for example:

  • Use the router-link component ;
  • Use this.$router.push() method in Vue component;
  • Use this.$router.replace() method in Vue component;
  • In Use this.$router.go() method in Vue component;
  • Use this.$route.back() method in Vue component.

For example, use the router.push method in the Vue component to implement routing jump:

import { reactive } from 'vue'
export default {
    setup() {
        const state = reactive({
            userId: ''
        })
        const handleRoute = function() {
            router.push({
                name: 'user',
                params: { id: state.userId }
            })
        }
        return {
            state,
            handleRoute
        }
    }
}

In the code, we use reactive to create an object in the Vue component, and then in In the handleRoute method, use the router.push method to implement route jump. Among them, the name field corresponds to the router-link or the name attribute of the routing information, and params is an object that contains the dynamic parameters required for routing.

Conclusion

Vue-Router is a very powerful and easy-to-use routing manager. In a Vue application, Vue-Router can be used to easily implement route jumps and the parameter transfer required for route jumps. For developers, this makes writing single-page applications very simple and efficient.

The above is the detailed content of How to implement front-end routing jump under Vue?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Vue常见面试题汇总(附答案解析)Vue常见面试题汇总(附答案解析)Apr 08, 2021 pm 07:54 PM

本篇文章给大家分享一些Vue面试题(附答案解析)。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

5 款适合国内使用的 Vue 移动端 UI 组件库5 款适合国内使用的 Vue 移动端 UI 组件库May 05, 2022 pm 09:11 PM

本篇文章给大家分享5 款适合国内使用的 Vue 移动端 UI 组件库,希望对大家有所帮助!

手把手带你利用vue3.x绘制流程图手把手带你利用vue3.x绘制流程图Jun 08, 2022 am 11:57 AM

利用vue3.x怎么绘制流程图?下面本篇文章给大家分享基于 vue3.x 的流程图绘制方法,希望对大家有所帮助!

vue中props可以传递函数吗vue中props可以传递函数吗Jun 16, 2022 am 10:39 AM

vue中props可以传递函数;vue中可以将字符串、数组、数字和对象作为props传递,props主要用于组件的传值,目的为了接收外面传过来的数据,语法为“export default {methods: {myFunction() {// ...}}};”。

聊聊vue指令中的修饰符,常用事件修饰符总结聊聊vue指令中的修饰符,常用事件修饰符总结May 09, 2022 am 11:07 AM

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何覆盖组件库样式?React和Vue项目的解决方法浅析如何覆盖组件库样式?React和Vue项目的解决方法浅析May 16, 2022 am 11:15 AM

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!

通过9个Vue3 组件库,看看聊前端的流行趋势!通过9个Vue3 组件库,看看聊前端的流行趋势!May 07, 2022 am 11:31 AM

本篇文章给大家分享9个开源的 Vue3 组件库,通过它们聊聊发现的前端的流行趋势,希望对大家有所帮助!

react与vue的虚拟dom有什么区别react与vue的虚拟dom有什么区别Apr 22, 2022 am 11:11 AM

react与vue的虚拟dom没有区别;react和vue的虚拟dom都是用js对象来模拟真实DOM,用虚拟DOM的diff来最小化更新真实DOM,可以减小不必要的性能损耗,按颗粒度分为不同的类型比较同层级dom节点,进行增、删、移的操作。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.