search
HomeWeb Front-endVue.jsHow to use Vue Router to achieve interaction and communication between pages?

How to use Vue Router to achieve interaction and communication between pages?

Jul 21, 2023 pm 06:41 PM
communicationvue routerPage interaction

How to use Vue Router to achieve interaction and communication between pages?

Vue Router is the official routing management tool of Vue.js. It can help us build SPA (Single Page Application) applications and easily realize interaction and communication between pages. In this article, we will learn how to use Vue Router to implement interaction and communication between pages, and provide some code examples.

What is Vue Router?

Vue Router is an official routing manager based on Vue.js, used to implement routing functions in SPA applications. Through Vue Router, we can define routing rules and perform page jumps and component loading according to the rules.

Install and configure Vue Router

First, we need to install Vue Router through npm:

npm install vue-router

After the installation is complete, we need to introduce Vue into the entry file of the Vue project Router and perform basic configuration. As shown below:

// main.js

import Vue from 'vue'
import VueRouter from 'vue-router'
import App from './App.vue'

Vue.use(VueRouter)

const routes = [
  { path: '/', component: Home },
  { path: '/about', component: About },
  // 其他路由规则
]

const router = new VueRouter({
  routes
})

new Vue({
  router,
  render: h => h(App)
}).$mount('#app')

In the above code, we first introduce Vue and VueRouter, and enable the Vue Router plug-in through Vue.use(VueRouter). Then, we define a routes array, which contains our routing rules.

When creating a Vue instance, we pass in the router object and use the <router-view></router-view> tag in the component to display the corresponding component.

Route jump

Vue Router provides two ways to implement route jump: declarative navigation and programmatic navigation.

Declarative Navigation

In templates, we can use the <router-link></router-link> tag to declaratively navigate to other pages. For example:

<router-link to="/">Home</router-link>
<router-link to="/about">About</router-link>

Programmatic navigation

If routing jumps are required in the method of the Vue instance, we can use the $router object to implement programmatic navigation. For example:

// 在某个方法中进行路由跳转
this.$router.push('/')
this.$router.push('/about')

Routing parameters

Sometimes, we need to dynamically generate routes based on certain parameters. Vue Router can implement this function through routing parameters.

Define routes with parameters

In routing rules, we can define routes with parameters by using colons. For example, we can define a route with a dynamic id:

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

Get route parameters

In the component, we can get it through this.$route.params Routing parameters. For example:

// 在User组件中获取路由参数
mounted() {
  console.log(this.$route.params.id)
}

Nested routing

Vue Router also supports the function of nested routing, allowing us to load other sub-components in a component. Through nested routing, we can build a multi-level component structure.

Define nested routes

In routing rules, we can use the children attribute to define nested sub-routes. For example:

const routes = [
  {
    path: '/user',
    component: User,
    children: [
      { path: 'profile', component: UserProfile },
      { path: 'settings', component: UserSettings }
    ]
  }
]

Loading child components in components

In the template of the parent component, we can use the <router-view></router-view> tag to load the child component. The parent component will act as a container for the child component.

<template>
  <div>
    <h2 id="User">User</h2>
    <router-view></router-view>
  </div>
</template>

Communication between routes

In actual development, we often need to share and communicate data between different pages. Vue Router provides some mechanisms to implement communication between routes.

Routing parameters

As mentioned before, we can pass data through routing parameters to pass data between different pages. In the previous example, we used the user id as the routing parameter.

Routing hook

The routing hook function in Vue Router can help us perform some operations when switching routes, such as obtaining data or jump verification.

// 全局前置守卫
router.beforeEach((to, from, next) => {
  // 在跳转前执行的操作
  next()
})

// 全局后置钩子
router.afterEach((to, from) => {
  // 在跳转完成后执行的操作
})

In addition to global routing hooks, we can also use intra-component routing hooks in components. For example, define a beforeRouteEnter hook function in the component to perform verification operations before getting data.

const User = {
  beforeRouteEnter(to, from, next) {
    // 在获取数据之前进行验证操作
    next()
  }
}

Summary

Through the introduction of this article, we have learned how to use Vue Router to achieve interaction and communication between pages. We learned how to install and configure Vue Router, and provided code examples to demonstrate route jumps, route parameters, nested routes, and communication between routes. I hope this article will be helpful to you when using Vue Router!

The above is the detailed content of How to use Vue Router to achieve interaction and communication between pages?. 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
Why Does Vue.js Use a Virtual DOM Instead of Direct DOM Manipulation?Why Does Vue.js Use a Virtual DOM Instead of Direct DOM Manipulation?May 16, 2025 am 12:05 AM

Vue.js uses virtual DOM instead of directly operating DOM, in order to improve performance and development efficiency. 1) Virtual DOM is calculated through diff algorithm to minimize DOM operations and improve performance. 2) Simplify development, developers do not need to deal with DOM complexity. 3) Component reuse and combination are more efficient. The working principle of virtual DOM is to generate a comparison between the new tree and the old tree, update only the difference part, and reduce the number of DOM operations.

What Happens When the Vue.js Virtual DOM Detects a Change?What Happens When the Vue.js Virtual DOM Detects a Change?May 14, 2025 am 12:12 AM

WhentheVue.jsVirtualDOMdetectsachange,itupdatestheVirtualDOM,diffsit,andappliesminimalchangestotherealDOM.ThisprocessensureshighperformancebyavoidingunnecessaryDOMmanipulations.

How Accurate Is It to Think of Vue.js's Virtual DOM as a Mirror of the Real DOM?How Accurate Is It to Think of Vue.js's Virtual DOM as a Mirror of the Real DOM?May 13, 2025 pm 04:05 PM

Vue.js' VirtualDOM is both a mirror of the real DOM, and not exactly. 1. Create and update: Vue.js creates a VirtualDOM tree based on component definitions, and updates VirtualDOM first when the state changes. 2. Differences and patching: Comparison of old and new VirtualDOMs through diff operations, and apply only the minimum changes to the real DOM. 3. Efficiency: VirtualDOM allows batch updates, reduces direct DOM operations, and optimizes the rendering process. VirtualDOM is a strategic tool for Vue.js to optimize UI updates.

Vue.js vs. React: Scalability and MaintainabilityVue.js vs. React: Scalability and MaintainabilityMay 10, 2025 am 12:24 AM

Vue.js and React each have their own advantages in scalability and maintainability. 1) Vue.js is easy to use and is suitable for small projects. The Composition API improves the maintainability of large projects. 2) React is suitable for large and complex projects, with Hooks and virtual DOM improving performance and maintainability, but the learning curve is steeper.

The Future of Vue.js and React: Trends and PredictionsThe Future of Vue.js and React: Trends and PredictionsMay 09, 2025 am 12:12 AM

The future trends and forecasts of Vue.js and React are: 1) Vue.js will be widely used in enterprise-level applications and have made breakthroughs in server-side rendering and static site generation; 2) React will innovate in server components and data acquisition, and further optimize the concurrency model.

Netflix's Frontend: A Deep Dive into Its Technology StackNetflix's Frontend: A Deep Dive into Its Technology StackMay 08, 2025 am 12:11 AM

Netflix's front-end technology stack is mainly based on React and Redux. 1.React is used to build high-performance single-page applications, and improves code reusability and maintenance through component development. 2. Redux is used for state management to ensure that state changes are predictable and traceable. 3. The toolchain includes Webpack, Babel, Jest and Enzyme to ensure code quality and performance. 4. Performance optimization is achieved through code segmentation, lazy loading and server-side rendering to improve user experience.

Vue.js and the Frontend: Building Interactive User InterfacesVue.js and the Frontend: Building Interactive User InterfacesMay 06, 2025 am 12:02 AM

Vue.js is a progressive framework suitable for building highly interactive user interfaces. Its core functions include responsive systems, component development and routing management. 1) The responsive system realizes data monitoring through Object.defineProperty or Proxy, and automatically updates the interface. 2) Component development allows the interface to be split into reusable modules. 3) VueRouter supports single-page applications to improve user experience.

What are the disadvantages of VueJs?What are the disadvantages of VueJs?May 05, 2025 am 12:06 AM

The main disadvantages of Vue.js include: 1. The ecosystem is relatively new, and third-party libraries and tools are not as rich as other frameworks; 2. The learning curve becomes steep in complex functions; 3. Community support and resources are not as extensive as React and Angular; 4. Performance problems may be encountered in large applications; 5. Version upgrades and compatibility challenges are greater.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool