search
HomeWeb Front-endJS TutorialHow to implement asynchronous component loading in vue+webpack?

How to implement asynchronous component loading in vue+webpack?

Jun 07, 2018 pm 05:51 PM
vuewebpackloadAsynchronous components

Below I will share with you a method for implementing asynchronous component loading with vue webpack. It has a good reference value and I hope it will be helpful to everyone.

8.9 update: When I wanted to move to csdn before, I couldn’t transfer the blog because of the invitation code problem, so I went to the blog park. Today I found that csdn had moved the article for me. It is necessary to correct it. This article.

When I wrote this article, I was new to vue, so I was a little confused when tinkering with it.

-------------/*You can skip the following*/------------- ---

It took a long time to do something that was originally very simple.

1. The vue document only gives an example of Vue.component('comp_name', function(resolve,reject){}) loading component definition content via ajax in the callback, but now I am used to writing components in .vue files. , how to do it when clicking on the route to get .vue?

2. Webpack's coding-split supports commonjs/amd syntax, that is, there are different implementations. After checking many messy cases on the Internet, I finally settled on two ways of writing

commonjs syntax: const setting = resolve => require.ensure([], ()=> resolve(require('./components /setting.vue')),'setting');

Document writing method: resolve =>require(['./components/setting.vue')],resolve);//Lazy loading

At that time, I practiced together with routing. The first one I used was what I saw on github. require.ensure is the syntax of webpack. When packaging, the code specified in the require.ensure part is cut out and packaged. On another chunk, just add the chunkFileName item in webpack.config.js. The three parameters of require.ensure are: dependent URL, callback, and custom chunk name.

In fact, the essence of code split is to separate the modules you require and package them separately. When used, the browser initiates asynchronous acquisition and inserts it into the head through scriptdom. This is it The underlying implementation. When I tried it myself, every time I obtained an asynchronous component, two tags were inserted into the head, one script and one yigestyle, because the .vue file will eventually be parsed into html, css and js.

PS: In fact, the sample code on the webpack official website does not have the resolution=> writing method. Just require.ensure directly in the function. I was a little confused at first. I couldn’t find an explanation on the Internet, so I did my own research. Found the require.ensure function. After webpack packaging and compilation,

is a function of _webpack_require_.e, which itself is a thenable instance. The callback of require.ensure is placed in _webpack_require_.e.then (fn), it is immediately obvious that the syntax of webpack itself should be a promise instance, but in the above way of getting the vue component, because require.ensure is an encapsulated syntax, we have to pass resolve into its parent function , obtain and call it through the scope chain in the callback of require.ensure. This also reveals that the resolve function does not have to be in the function parameters of the promise, and its appearance position can be flexibly set. As mentioned in Teacher Ruan Yifeng's ES6 introduction, the resolve function is provided by the js engine and does not need to be deployed by yourself.

------------------/*You can skip the above*/------------ ------

First of all, the use of asynchronous components is not as complicated as you thought when you first came into contact with it.

1. If you apply the official website method:

HTML:

<input type="button" @click="showchild" value="show"> //点击按钮后,show为真,先获取child组件,再渲染p内容
<p id="contain" v-if="show">
 <child></child>
 </p>

JS:

//...
data () {
  return {
   msg: &#39;Welcome to Your Vue.js App&#39;,
   show:false
  }
 },
 methods: {
  showchild:function(){
   this.show=true;
   }
 },
 components: {
   &#39;child&#39;: function(resolve) {
    require([&#39;./components/child.vue&#39;], resolve);
 }

*Note: When loading asynchronous components, do not ignore the .vue after the component name.

This example should be more intuitive. After clicking the button, the Boolean value of the variable show is changed to true. Since child.vue is an asynchronous component, the component will be obtained through ajax first and then rendered.

In many cases, asynchronous components will be used with vue-router to switch views. In fact, any syntax can be used at this time.

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

How to use Dom elements in jQuery?

What are the commonly used array functions in js?

About how to use datepicker in vue2.0

The above is the detailed content of How to implement asynchronous component loading in vue+webpack?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python vs. JavaScript: Community, Libraries, and ResourcesPython vs. JavaScript: Community, Libraries, and ResourcesApr 15, 2025 am 12:16 AM

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

From C/C   to JavaScript: How It All WorksFrom C/C to JavaScript: How It All WorksApr 14, 2025 am 12:05 AM

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

JavaScript Engines: Comparing ImplementationsJavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Beyond the Browser: JavaScript in the Real WorldBeyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AM

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Building a Multi-Tenant SaaS Application with Next.js (Backend Integration)Apr 11, 2025 am 08:23 AM

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)How to Build a Multi-Tenant SaaS Application with Next.js (Frontend Integration)Apr 11, 2025 am 08:22 AM

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript: Exploring the Versatility of a Web LanguageJavaScript: Exploring the Versatility of a Web LanguageApr 11, 2025 am 12:01 AM

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

The Evolution of JavaScript: Current Trends and Future ProspectsThe Evolution of JavaScript: Current Trends and Future ProspectsApr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment