An example of how Vue implements four-level navigation and verification code

An example of how Vue implements four-level navigation and verification code

Effect:

First create five vue interfaces

1.home.vue page

<template>
  <div id="home-wrapper">
    <h1>{{ name }}</h1>
    <nav>
      <!-- The exit of the secondary router is in the interface of the primary router-->
      <router-link to="/one">one</router-link>
      <router-link :to="{ name: 'Two' }">two</router-link>
      <router-link :to="threeObj">three</router-link>
      <!-- Programmatic Navigation/Routing -->
      <button @click="fourBtn">four</button>
    </nav>
     <router-view></router-view>
  </div>
</template>
 
<script>
export default {
  data() {
    return {
      name: "Home",
      threeObj: {
        name: "Three",
      },
    };
  },
  methods: {
    fourBtn() {
      var userId = 6789;
      this.$router.push({
        path: `four/${userId}`,
      });
    },
  },
};
</script>
 
<style lang="less" scoped>
#home-wrapper{
  nav{
    display: flex;
    a{
      flex: 1;
      background-color: antiquewhite;
      height: 50px;
      line-height: 50px;
    }
  }
}
</style>

2.one.vue interface

<template>
    <div>
        <h1>{{name}}</h1>
        <ul>
            <li>
                <router-link to="/levl31">web</router-link>
            </li>
            <li>
                <router-link :to="{name:'name32'}">backend</router-link>
            </li>
            <li>
                <!-- Using named routes is more convenient in multi-level routing-->
                <router-link :to="{name:'name33'}">AI</router-link>
            </li>
            <li>
                <router-link to="/one/levl34">UI</router-link>
            </li>
            <li>
                <router-link :to="{name:'name35'}">Level 3 Router-4</router-link>
            </li>
        </ul>
        <!-- The third-level router exits the interface of the second-level router-->
        <router-view></router-view>
 
    </div>
</template>
 
<script>
    export default {
        name:'One',
        data() {
            return {
                name: "First Page"
            }
        },
        
    }
</script>
 
<style lang="less" scoped>
ul{
    list-style: none;
    display: flex;
    width: 100%;
    margin-left: -40px;
 
}
li{
    flex: 1;
    background-color: orange;
    height: 50px;
    line-height: 50px;
 
}
 
</style>

3.two.vue page and verification code implementation

Result diagram:

<template>
  <div>
    <h1>{{ name }}</h1>
    <button @click="changeCode">Verification code</button>
    <img :src="imgCodeUrl" alt="">
  </div>
</template>
 
<script>
export default {
  // The component's alias is convenient for viewing during Vue debugging name: "Two_zh",
  data() {
    return {
      name: "Page 2",
      imgCodeUrl:""
    };
  },
  methods: {
    // Get the verification code changeCode() {
        // /api is the proxy configuration in vue.config.js const url = "api/v1/captchas";
    // const url = "https://elm.cangdu.org/v1/captchas";
      this.axios
        .post(url, {})
        .then((res) => {
            this.imgCodeUrl =res.data.code 
          console.log("Verification code interface:",res);
        })
        .catch((e) => {
          console.log("Error:", e);
        });
    },
  },
};
</script>
 
<style lang="less" scoped>
</style>

4. three.vue page

<template>
    <div>
        <h1>{{name}}</h1>
 
    </div>
</template>
 
<script>
    export default {
        name:'three',
        data() {
            return {
                name: "Page 3"
            }
        },
        
    }
</script>
 
<style lang="less" scoped>
 
</style>

5.four.vue page

<template>
    <div>
        <h1>{{name}}</h1>
 
    </div>
</template>
 
<script>
    export default {
        name:'Four',
        data() {
            return {
                name: "Page 4"
            }
        },
        created() {
            console.log("Page 4 created:",this.$route)
        },
    }
</script>
 
<style lang="less" scoped>
 
</style>

Then configure the routes:

import Vue from 'vue'
import VueRouter from 'vue-router'
import Home2 from '@/views/day/home.vue'
 
Vue.use(VueRouter)
 
const routes = [
  {
    path: "/",
    name: 'home2',
    component: Home2,
    redirect: "/one",
    children: [
      {
        path: "/one",
        name: 'One',
        component: () => import("@/views/day/one.vue"),
        children: [
          {
            path: '/levl31',
            // h creacteElement means to create a virtual Dom/label Vnode 
            // The first parameter is the tag name extension. If the component you write is also the tag name // The second parameter is the optional attribute configuration of the tag // The third parameter is the content of the tag component: {
              render(h) {
                return h("h1", "frontend")
              }
            },
          },
          {
            // /Default represents the root directory#/levl31
            // Without slash, it will be concatenated automatically#/one/levl32
            //Use named routing path: "levl32"
            name: "name32",
            component: {
              render(h) {
                return h("h1", "Backend")
                }
              },
            },
            {
              path:"/one?levl33",
              name:"name33",
              component:{
                render(h) {
                  return h("h1", "Artificial Intelligence")
                  }
              }
            },
            {
              path:"/one/levl34",
              name:"name34",
              component:{
                render(h) {
                  return h("h1","Just an artist")
                  }
              }
            },
            //Level 3 and 4 routing {
              path:"level35",
              name:"name35",
              component:()=>import("@/views/Home.vue"),
              //Fourth level routing children:[
                {
                  path:"boy",
                  name:"Boy",
                  component:()=>import("@/views/boy.vue")
                },
                {
                  path:"girl",
                  name:"Girl",
                  component:()=>import("@/views/girl.vue")
                }
 
              ]
 
            }
        ]
      },
      {
        path: "/two",
        name: 'Two',
        component: () => import("@/views/day/two.vue")
      },
      {
        path: "/three",
        name: 'Three',
        component: () => import("@/views/day/three.vue")
      },
      {
        // Optional parameter \d Numeric string will not match path: "four/:id(\\d*)?",
        name: 'Four',
        component: () => import("@/views/day/four.vue")
      },
    ]
  }
]
 
const router = new VueRouter({
  routes
})
 
export default router

Summarize

This is the end of this article about Vue's implementation of four-level navigation and verification code. For more relevant Vue four-level navigation and verification code content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vue realizes the navigation bar effect (selected state refresh does not disappear)
  • How to implement nav navigation bar in Vue
  • Vue2.0 realizes the navigation menu switching effect
  • Vue implements navigation bar menu
  • Very practical vue navigation hook
  • VUE implements the method of keeping the scroll monitoring navigation bar on top
  • Simple implementation of the 60-second countdown function of the vue verification code
  • vue implements the registration function of sending SMS verification code through mobile phone
  • VUE implements image verification code function
  • Vue generates a random verification code sample code

<<:  How to install Nginx in CentOS

>>:  A brief understanding of the three uses of standard SQL update statements

Recommend

MySQL trigger trigger add, delete, modify and query operation example

This article uses examples to describe the add, d...

Summary of the differences between Vue's watch, computed, and methods

Table of contents 1 Introduction 2 Basic usage 2....

Monitor the size change of a DOM element through iframe

A common problem encountered during the developme...

The final solution to Chrome's minimum font size limit of 12px

I believe that many users who make websites will ...

Docker installs Redis and introduces the visual client for operation

1 Introduction Redis is a high-performance NoSQL ...

What you need to know about filters in Vue

Table of contents Preface What is a filter How to...

Summary of Operator Operations That Are Very Error-Prone in JavaScript

Table of contents Arithmetic operators Abnormal s...

Summary of Linux commands commonly used in work

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

HTML code example: detailed explanation of hyperlinks

Hyperlinks are the most frequently used HTML elem...

Detailed explanation of Angular routing basics

Table of contents 1. Routing related objects 2. L...