Vue Router

Understanding: A route is a set of mapping relationships (key-value), and multiple routes require a router to manage them. Front-end routing: key is the path and value is the component. 1. Basic use Install vue-router: npm i vue-router Application plug-in (main.js): Vue.use(VueRouter) import Vue from ‘vue’ import App from ‘./App.vue’ //Introduce vue-router import VueRouter from […]

Switches and routers realize the division of different network segments, communication between different vlans, and specify combinations of vlans for network communication.

Switches and routers implement the division of different network segments, communication between different vlans, and designated combinations of vlans for network communication. I recommend a very easy-to-use free online tool for drawing: https://www.processon.com/i/5f58a647e658155997003a46 1. Examples of network requirements 1. Assume that there are three PCs A, B, and C, which need to be on different […]

Routing (vue-router)

Routing Complete a SPA single-page application to achieve an effect similar to that of a native app. There will be no white screen when switching, improving user experience. Essence Render different component pages based on different URLs Route creation Creation of first-level routing 1. Create the corresponding routing page component in the views folder 2. […]

Get started quickly with VUE —vue project structure (api, assets, components, router, services, store, styles, views, App.vue, main.js)

vue project structure Structure display myapp/ ├── public/ # Public resource directory │ ├── index.html # Entry HTML file of the project │ └── favicon.ico # Website icon │ ├── src/ # Project source code directory │ ├── api/ # Define and manage the directory of modules or services that send requests to the backend […]

09-React routing usage (React Router 6)

9-Usage of React Router 6 1. Overview React Router is published on npm in three different packages, which are: react-router: The core library of routing, which provides many components and hooks. react-router-dom: Contains all the content of react-router and adds some components specifically for DOM, such as Wait. react-router-native: includes all the content of react-router, […]

Buying Guide for Home WIFI Routers and Wireless Network Cards

1. Reference materials 【Wi-Fi】802.11/802.11b/802.11g/802.11n/802.11a/802.11ac/802.11ax/802.11be From bandwidth to routing, from wired to wireless, from demand to purchase, from network deployment to actual testing, we’ve covered it all. Basics (1) [Detailed explanation in one article] What is the 802.11a/b/g/n/ac/ax protocol and how is it related to Wi-Fi 4/5/6 802.11a/b/g/n/ac development and differences 2. Related introduction 1. Broadband […]

Vue components and file and folder naming conventions, SPA, creating routes, router-link related properties, routing to create multi-view single-page applications

Table of Contents 1. vue component (emphasis) 1.1 Component introduction 1.2 Local components 1.3 Global components 2. Custom events 2.1 Child -> Parent 2.2 Parent -> Child 3. Naming specifications for files and folders in Vue 4. SPA 4.1 Introduction to SPA 4.2 SPA technical points 5. Use routing to build multi-view single-page applications 5.1 […]

Similarities and differences between kuberntes ingress and openshift router

The article is reproduced from: https://blog.51cto.com/mahmut/7932433 Goal: Explore the similarities and differences between Kuberntes Ingress and Openshift Router Prerequisite: Have an understanding of Kubernetes and Openshift Background: Both Kubernetes Ingress and Openshift Route can expose services (Services) in the form of routes to facilitate external access to cluster internal resources and also provide load balancing. […]