Vue multi-page configuration details

Vue multi-page configuration details

1. The difference between multiple pages

The concept of single-page application emerged with the emergence of frameworks such as AngularJS , React , and Ember in the past few years. In the previous introduction, we talked about partial refresh of the page in page rendering, and the single-page application uses the partial refresh capability of the page to refresh the page content when switching pages, thereby obtaining a better experience.

2. SPA and MPA

The differences between SinglePage SinglePage Web Application Application (SPA) and MultiPage Application (MPA) are as follows:

title SPA MPA
composition One main page + multiple page fragments Multiple full pages
Resource sharing (css, js) Shared resources only need to be loaded once Each page needs to load common resources
url pattern xxx/#/page1 xxx/#/page2 xxx/page1.html xxx/page2.html
Refresh method Partial page refresh or change Full page refresh
Page jump The shell remains unchanged, the local page content is updated, and the jump animation is easy to implement Jumping from one page to another page, the jump animation cannot be realized
User Experience Fast switching between page fragments, good user experience Page switching requires reloading, which is slow and has low fluency, resulting in poor user experience
Data Transfer On the same page, global variables are easy to implement Relying on URL parameters, cookies, localStorage, etc., is difficult to implement
Search Engine Optimization (SEO) It is difficult to implement and is not conducive to SEO retrieval. Simple implementation method
Applicable scenarios Applications with high experience requirements Need a search engine friendly app

3. Vue Cli scaffolding configuration

first step:

We create a main page and a sub-page under the public file. The directory structure is as follows

Step 2:

With the main page and the sub-page, there must be corresponding main page entry files and sub-page entry files. The directory structure is as follows

Step 3:

Configuring pages in vue.config.js can be understood as a configuration mapping of multiple pages.

pages: {
    index: {
        entry: 'src/main.js',
        template: 'public/index.html',
        filename: 'index.html',
    },
    bangban:
        entry: 'src/banban.js',
        template: 'bangban.html',
        filename: 'public/bangban.html'
    }
}


This is the end of this article about the details of vue multi-page configuration. For more relevant vue multi-page configuration content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of Vue-cli3 multi-page configuration
  • VUE.CLI4.0 configuration of multiple page entries
  • Detailed steps to add multi-page configuration to the Vue project
  • Vue configuration multi-page application sample code
  • How to implement Vue configuration with multiple pages
  • WebPack configuration vue multi-page skills
  • Project created by vue-cli, implementation method of configuring multiple pages

<<:  Example of creating a virtual host based on Apache port

>>:  Implementation code for saving images to MySQL database and displaying them on the front-end page

Recommend

Ubuntu Server 16.04 MySQL 8.0 installation and configuration graphic tutorial

Ubuntu Server 16.04 MySQL 8.0 installation and co...

Table of CSS Bugs Caused by hasLayout

IE has had problems for a long time. When everyone...

Summary of the use of vue Watch and Computed

Table of contents 01. Listener watch (1) Function...

Introduction to HTML link anchor tags and their role in SEO

The <a> tag is mainly used to define links ...

WeChat applet implements simple calculator function

This article shares the specific code for the WeC...

Nginx installation detailed tutorial

1. Brief Introduction of Nginx Nginx is a free, o...

HTML markup language - form

Click here to return to the 123WORDPRESS.COM HTML ...

Installation, activation and configuration of ModSecurity under Apache

ModSecurity is a powerful packet filtering tool t...

Detailed explanation of how to quickly build a blog website using Docker

Table of contents 1. Preparation 2. Deployment Pr...

In-depth analysis of HTML table tags and related line break issues

What is a table? Table is an Html table, a carrie...

Detailed explanation of the basic use of Apache POI

Table of contents Basic Introduction Getting Star...

WeChat applet to achieve the revolving lantern effect example

Preface In daily development, we often encounter ...

Several methods of implementing two fixed columns and one adaptive column in CSS

This article introduces several methods of implem...

MySQL 8.0.12 winx64 detailed installation tutorial

This article shares the installation tutorial of ...

Tutorial on installing Android Studio on Ubuntu 19 and below

Based on past experience, taking notes after comp...