search
HomeWeb Front-endVue.js3 ways to implement route loading on demand (lazy loading of routes) in vue

Why do we need lazy loading?

Single-page applications like vue, if there is no application lazy loading, the files packaged with webpack will be abnormally large, resulting in the content that needs to be loaded when entering the homepage Too much and too long will result in a long white screen. Even if loading is done, it is not conducive to the user experience. However, using lazy loading can divide the page and load the page when needed, which can effectively share the load of the homepage. Bear the loading pressure and reduce the loading time of the home page [Related recommendations: vue.js video tutorial]

  • vue asynchronous component

  • es proposal’s import()

  • webpack’s require, ensure()

1. vue asynchronous component technology== == Asynchronous loading

vue-router configures routing and uses vue's asynchronous component technology to achieve on-demand loading.
However, in this case, a component generates a js file

/* vue asynchronous component technology*/

{ path: '/home', name: 'home', component: resolve => require([' @/components/home'],resolve) },

{ path: '/index', name: 'Index', component: resolve => require(['@/components/index '],resolve) },

{ path: '/about', name: 'about', component: resolve => require(['@/components/about'],resolve) }

Non-lazy loading:

Lazy loading

2. Component lazy loading solution 2. Route lazy loading (using import)

const 组件名=() => import('组件路径');
// 下面2行代码,没有指定webpackChunkName,每个组件打包成一个js文件。
/* const Home = () => import('@/components/home')
const Index = () => import('@/components/index')
const About = () => import('@/components/about') */
// 下面2行代码,指定了相同的webpackChunkName,会合并打包成一个js文件。
把组件按组分块
const Home = () => import(/* webpackChunkName: 'ImportFuncDemo' */ '@/components/home')
const Index = () => import(/* webpackChunkName: 'ImportFuncDemo' */ '@/components/index')
const About = () => import(/* webpackChunkName: 'ImportFuncDemo' */ '@/components/about')

{ path: '/about', component: About }, { path: '/index', component: Index }, { path: '/home', component: Home }

3. require.ensure() provided by webpack

vue-router configures routing and uses webpack’s require. ensure technology can also implement on-demand loading.
In this case, multiple routes specifying the same chunkName will be merged and packaged into one js file.

/* 组件懒加载方案三: webpack提供的require.ensure() */
{ path: '/home', name: 'home', component: r => require.ensure([], () => r(require('@/components/home')), 'demo') },
{ path: '/index', name: 'Index', component: r => require.ensure([], () => r(require('@/components/index')), 'demo') },
{ path: '/about', name: 'about', component: r => require.ensure([], () => r(require('@/components/about')), 'demo-01') }

// r就是resolve
const list = r => require.ensure([], () => r(require('../components/list/list')), 'list');
// 路由也是正常的写法  这种是官方推荐的写的 按模块划分懒加载 
const router = new Router({
    routes: [
        {
           path: '/list/blog',
           component: list,
           name: 'blog'
        }
    ]
})

The above is the detailed content of 3 ways to implement route loading on demand (lazy loading of routes) in vue. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete
How to configure the lifecycle hooks of the component in VueHow to configure the lifecycle hooks of the component in VueMar 04, 2025 pm 03:29 PM

This article clarifies the role of export default in Vue.js components, emphasizing that it's solely for exporting, not configuring lifecycle hooks. Lifecycle hooks are defined as methods within the component's options object, their functionality un

How to configure the watch of the component in Vue export defaultHow to configure the watch of the component in Vue export defaultMar 04, 2025 pm 03:30 PM

This article clarifies Vue.js component watch functionality when using export default. It emphasizes efficient watch usage through property-specific watching, judicious deep and immediate option use, and optimized handler functions. Best practices

What is Vuex and how do I use it for state management in Vue applications?What is Vuex and how do I use it for state management in Vue applications?Mar 11, 2025 pm 07:23 PM

This article explains Vuex, a state management library for Vue.js. It details core concepts (state, getters, mutations, actions) and demonstrates usage, emphasizing its benefits for larger projects over simpler alternatives. Debugging and structuri

How do I implement advanced routing techniques with Vue Router (dynamic routes, nested routes, route guards)?How do I implement advanced routing techniques with Vue Router (dynamic routes, nested routes, route guards)?Mar 11, 2025 pm 07:22 PM

This article explores advanced Vue Router techniques. It covers dynamic routing (using parameters), nested routes for hierarchical navigation, and route guards for controlling access and data fetching. Best practices for managing complex route conf

How do I create and use custom plugins in Vue.js?How do I create and use custom plugins in Vue.js?Mar 14, 2025 pm 07:07 PM

Article discusses creating and using custom Vue.js plugins, including development, integration, and maintenance best practices.

How do I configure Vue CLI to use different build targets (development, production)?How do I configure Vue CLI to use different build targets (development, production)?Mar 18, 2025 pm 12:34 PM

The article explains how to configure Vue CLI for different build targets, switch environments, optimize production builds, and ensure source maps in development for debugging.

What are the key features of Vue.js (Component-Based Architecture, Virtual DOM, Reactive Data Binding)?What are the key features of Vue.js (Component-Based Architecture, Virtual DOM, Reactive Data Binding)?Mar 14, 2025 pm 07:05 PM

Vue.js enhances web development with its Component-Based Architecture, Virtual DOM for performance, and Reactive Data Binding for real-time UI updates.

How do I use Vue with Docker for containerized deployment?How do I use Vue with Docker for containerized deployment?Mar 14, 2025 pm 07:00 PM

The article discusses using Vue with Docker for deployment, focusing on setup, optimization, management, and performance monitoring of Vue applications in containers.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version