Vue3.0+vite2 implements dynamic asynchronous component lazy loading

Vue3.0+vite2 implements dynamic asynchronous component lazy loading

Create a Vite project

Performance determines success or failure; Vite is indeed fast;
cmd command line (you have already installed node & npm by default), execute npm init @vitejs/app vue-study – --template vue;
cd to vue-study, npm install (install dependencies); npm run dev (start the project);

Creating Components

Create a new directory called pages, and under pages, create a new directory called contents. Under contents, you can create a specific component directory page. At this time, the directory structure is as follows:

App.vue

<template>
 <p @click="onChangeContents('./pages/contents/gp/gp.vue')">Guo Pei</p>
 <p @click="onChangeContents('./pages/contents/systemManges/xtcs.vue')">System parameters</p>
 <p>{{currentTabComponent}}</p>
 <!-- <Suspense> -->
 <component :is="DefineAsyncComponent({
     //Factory function loader: Modeuls[currentTabComponent],
     // // Default value: Infinity (i.e. never time out, unit: ms)
     timeout: 3000,
    })"></component>
 <!-- </Suspense> -->
</template>
<script lang="ts">
 import {
  defineComponent,
  defineAsyncComponent,
  reactive,
  ref
 } from 'vue'
 export default defineComponent({
  name: 'App',
  setup() {
   //vite loads all modules of the specified path const Modeuls = import.meta.glob('./pages/contents/*/*');
   const onChangeContents = function(URL) {
    currentTabComponent.value = URL;
    console.log(currentTabComponent)
   }
   let currentTabComponent = ref('./pages/contents/systemManges/xtcs.vue');
   const DefineAsyncComponent = defineAsyncComponent;
   return {
    DefineAsyncComponent,
    currentTabComponent,
    onChangeContents,
    Modeuls
   }
  },
 })
</script>

This is the end of this article about vue3.0+vite2 to implement dynamic asynchronous component lazy loading. For more related vue3.0+vite2 dynamic asynchronous lazy loading content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vite builds projects and supports micro frontends
  • This article will show you what Vite does to the browser's request
  • Vite+Electron to quickly build VUE3 desktop applications
  • How to add Vite support to old Vue projects
  • Vite2.0 Pitfalls
  • Implementation of vite+vue3.0+ts+element-plus to quickly build a project
  • Steps to build the vite+vue3+element-plus project
  • Learn the principles of Vite

<<:  Implementation example of nginx access control

>>:  MySQL slow_log table cannot be modified to innodb engine detailed explanation

Recommend

A brief discussion on Linux virtual memory

Table of contents origin Virtual Memory Paging an...

Docker Compose network settings explained

Basic Concepts By default, Compose creates a netw...

JavaScript implements div mouse drag effect

This article shares the specific code for JavaScr...

Detailed explanation of Vue component reuse and expansion

Table of contents Overview Is the extension neces...

Ubuntu installation graphics driver and cuda tutorial

Table of contents 1. Uninstall the original drive...

HTML markup language - form

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

Implementation code of Nginx anti-hotlink and optimization in Linux

Hide version number The version number is not hid...

Two ways to export csv in win10 mysql

There are two ways to export csv in win10. The fi...

JS implements the snake game

Table of contents 1. Initialization structure 2. ...

Detailed explanation of CocosCreator optimization DrawCall

Table of contents Preface What is DrawCall How do...

Detailed process of configuring NIS in Centos7

Table of contents principle Network environment p...