Vue SPA first screen optimization solution

Vue SPA first screen optimization solution

Preface

When a regular vue project is packaged and accessed, it returns an html containing only div, and other content blocks are dynamically generated by js.

There are two big problems:

  • Not good for SEO
  • The first screen loading page is slow, and the user experience is not good

This article is a solution summarized by myself based on project experience. If there are any deficiencies, please point them out~

optimization

SSR

SSR (Server-Side Rendering) is server-side rendering, which renders Vue components into assembled HTML strings on the server side, and then sends them directly to the browser. Finally, these static tags need to be mixed into a fully interactive application on the client.
After redeploying the build project using ssr:

You can see that the returned content already contains the HTML code block of the first screen content, perfect!~.~

Speedy portal: A small demo based on vue-cli4.0+Typescript+SSR

Import on demand

Use es6 module for on-demand import

1. Import components on demand in routing files

# router.index.ts
export function createRouter() {
 return new Router({
 mode: 'history',
 routes: [
  {
  path: '/',
  name: 'Home',
  component: () => import(/* webpackChunkName: "Home" */ './views/Home.vue'),
  },
  {
  path: '/about',
  name: 'About',
  component: () => import(/* webpackChunkName: "about" */ './views/About.vue'),
  },
 ],
 });
}

2. Static libraries import modules on demand, not all of them

For example, in the element-ui library, I only want to use the button component:

import {
 button
} from 'element-ui';

Request optimization

1. CSS and JS placement order

The css file is placed in the header, and the js file is placed before the body, but vue has already handled it for us~

2. Use font icons, and use sprite images for icon resources

We know that HTTP requires three handshakes to establish a connection. Too many requests will affect the loading speed.

We should try to reduce unnecessary static resources, such as icons on the page, as shown in the following picture from Tencent's official website:

Directly import a completed image and set the image position according to background-position

Use CDN

Static resources are uploaded to CDN to improve access speed

Without CDN:

Using CDN:

It can be seen that after using CDN, static files will be compressed by GZIP, and the download speed will be greatly improved.

Entry chunk optimization

Splitting the entry chunk files and separating some static libraries can both speed up packaging and optimize loading.

As shown below, some static libraries are separated: vuejs, axios, vuex, etc. You can see that the browser will open multiple download threads for downloading. If these static libraries are not separated, the entry chunk will be very large, and the loading speed can be imagined~.~

Separate an element-ui library. We don't need to worry about the dev environment. We only separate it in the prod environment. We only need to remove the library in the vue packaging configuration:

# vue.config.js
configureWebpack: {
 externals:
 process.env.NODE_ENV === 'production'
  ? {
  'element-ui': 'element-ui',
  }
  : undefined,
},

# index.html manually import static resources <script src="/js/element-ui/element-ui.2.11.1.js"></script>

The above is the details of the Vue SPA first screen optimization plan. For more information about Vue SPA first screen optimization, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Vue SPA single-page application first screen optimization practice
  • Detailed explanation of Vue's self-implementation of dispatch and broadcast (dispatch and broadcast)
  • Vue implementation example of boradcast and dispatch
  • vue-cli single page pre-rendering seo-prerender-spa-plugin operation
  • Usage of store.commit and store.dispatch in vuex
  • Vue SPA first enters the loading animation implementation code
  • Vue realizes the effect of merging columns in data table rowspan
  • Routing caching problems and solutions in Vue SPA applications
  • Solve the problem that Vuex's Dispatch has no effect under Vue+Electron
  • VUE solves the WeChat signature and SPA WeChat invalid signature problem (perfect processing)
  • Detailed explanation of when the action in vuex is completed and how to call dispatch correctly

<<:  The perfect solution to the Chinese garbled characters in mysql6.x under win7

>>:  Detailed explanation of the pitfalls of nginx proxy socket.io service

Recommend

Detailed graphic tutorial on how to enable remote secure access with Docker

1. Edit the docker.service file vi /usr/lib/syste...

Example of how to identify the user using a linux Bash script

It is often necessary to run commands with sudo i...

Vue codemirror realizes the effect of online code compiler

Preface If we want to achieve the effect of onlin...

Ideas and codes for implementing waterfall flow layout in uniapp applet

1. Introduction Is it considered rehashing old st...

Solve the problem of Mac Docker x509 certificate

question Recently I needed to log in to a private...

Simple example of HTML checkbox and radio style beautification

Simple example of HTML checkbox and radio style b...

Write a mysql data backup script using shell

Ideas It's actually very simple Write a shell...

Detailed explanation of the use of $emit in Vue.js

1. Parent components can use props to pass data t...

Detailed explanation of JS homology strategy and CSRF

Table of contents Overview Same Origin Policy (SO...

Detailed explanation of the principle of Vue monitoring data

Table of contents 1. Introduction II. Monitoring ...

Website construction experience summary

<br />What principles should be followed to ...

What are the new features of Apache Spark 2.4, which will be released in 2018?

This article is from the Apache Spark Meetup held...

How to set up automatic daily database backup in Linux

This article takes Centos7.6 system and Oracle11g...

MySQL 8.0 DDL atomicity feature and implementation principle

1. Overview of DDL Atomicity Before 8.0, there wa...