The implementation principle of Vue router-view and router-link

The implementation principle of Vue router-view and router-link

use

<div id="app">
  <router-link to='home'>Home</router-link>
  <router-link to='about'>About</router-link>
  <router-view a=1><router-view/>
 </div>

router-view component

export default {
//Functional components do not have this, cannot be new, and do not have two-way data binding. They are usually used less frequently and are more suitable for displaying detail pages because the detail pages only display and do not modify or perform other operations. Functional components are lighter than stateful components.
  functional:true,
  render(h,{parent,data}){
  parent represents the parent component app
  data is an inline attribute (a=1 in the above code) and can also be passed using prop let route = parent.$route;
    let depth = 0;
    data.routerView = true;
    while(parent){ 
    //$vnode refers to the virtual dom. If there is a virtual dom on the app and the routerView on this virtual dom is true
      if (parent.$vnode && parent.$vnode.data.routerView){
        depth++; 
      }
      parent = parent.$parent;
    }
    let record = route.matched[depth];
    if(!record){
      return h();
    }
    return h(record.component, data);
  }
}

Implementation of router-link

export default {
  props:{
    to:{
      type:String,
      required:true
    },
    tag:{
      type:String
    }
  },
  render(h){
    let tag = this.tag || 'a';
    let handler = ()=>{
      this.$router.push(this.to);
    }
    return <tag onClick={handler}>{this.$slots.default}</tag>
  }
}

This is the end of this article about the implementation principles of Vue router-view and router-link. For more relevant Vue router-view and router-link content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Nested display implementation of vue router-view
  • Solve the problem that the content of the reused component of vue update router-view does not refresh
  • Tutorial on using router-view component in vue
  • Vue2 sets the default path of router-view
  • Vue implements the method of having multiple router-views on the same page
  • Solution to vue2.0 routing not displaying router-view
  • Solution to router-view not rendering in vue-router
  • Implementation of nested jump of vue routing view router-view

<<:  Python MySQL database table modification and query

>>:  Linux command line quick tips: How to locate a file

Recommend

Detailed explanation of the life cycle of Angular components (Part 2)

Table of contents 1. View hook 1. Things to note ...

Summary of Linux commands commonly used in work

Use more open source tools such as docker and kub...

How to try to add sticky effect to your CSS

Written in front I don’t know who first discovere...

How to solve the problem that Docker container has no vim command

Find the problem Today, when I tried to modify th...

Introduction to Common XHTML Tags

<br />For some time, I found that many peopl...

Detailed explanation of common usage of MySQL query conditions

This article uses examples to illustrate the comm...

Detailed explanation of 7 SSH command usages in Linux that you don’t know

A system administrator may manage multiple server...

Example of creating table statements for user Scott in MySQL version of Oracle

Overview: Oracle scott user has four tables, whic...

Summary of using MySQL online DDL gh-ost

background: As a DBA, most of the DDL changes of ...

WeChat applet learning wxs usage tutorial

What is wxs? wxs (WeiXin Script) is a scripting l...

Detailed explanation of react setState

Table of contents Is setState synchronous or asyn...

js method to delete a field in an object

This article mainly introduces the implementation...

Detailed installation and configuration tutorial of PostgreSQL 11 under CentOS7

1. Official website address The official website ...

Solve the error of installing VMware Tools on Ubuntu 18.04

1. According to the online tutorial, the installa...