vue3 Common Excess
1. Loading when the page is first opened
It is easiest to load content when the page is first opened. Adding content to <div id="app"> through the root directory index.html<p> file<code>
is excessive content
<body> <div id="app"> <h2 id="加载中">加载中......</h2> </div> <script type="module" src="/src/main.js"></script> </body>
When the vue instance is created, it is mounted into the div of id='app'
through the .mount()
method, and the loading
content inside will be replaced;
2. When routing is switched, asynchronous component loading
If the route is switched excessively, you need to understand one first, the built-in component of
vue3
;
-
##
provides
2slots????;
#default
: A content to be loaded;
#fallback
: A content to be displayed after loading;
<Suspense> <template #default> <router-view /> </template> <template #fallback> <h2 id="加载中">加载中......</h2> </template> </Suspense>
Similarly: (Switching of asynchronous components)
<template> <Suspense> <template #default> <AsyncComp v-if = 'vitblie' /> </template> <template #fallback> <h2 id="加载中">加载中......</h2> </template> </Suspense> <button @click='open'> 切换 </button> </template> <script setup> import { defineAsyncComponent , ref } from 'vue'; const asyncComp = defineAsyncComponent(()=>important('./asyncComp.vue)); const vitblie = ref(false); function open(){ vitblie.value = !vitblie.value; } </script>Asynchronous components can also be added using the same methodAdd transition AnimationTo add transition animation, you need to first understand
vue3 built-in components
and
????
: Very simple, only one
is displays the component, which can be used to switch components, such as:
<template>
<Component :is="visible ? TestComp : '' " />
</template>
: Content inserted in
Show/Hide Add transition animation and splice it through the name attribute
class Such as:
<template>
<transition name='anime'>
<TestComp v-if='visblte' />
</transition>
</template>
name attribute here
##anime-enter-active: Transition state (set
Combined????hide=> show
transition time, etc. Parameters)anime-leave-active
: transition state (settingshow=> hide
transition time and other parameters)
anime-enter -from
=>anime-enter-to
Hide=> Show
start and end styles anime-leave-from
= >anime-leave-to
Show=> Hide
Starting and ending styles
<template> <router-view v-slot={ Component } > <transition name='anime'> <component :is="Component" /> <transition> </router-view> <template> <style scoped> .anime-enter-active, .anime-leave-active { transition: all 1s; } .anime-leave-from { transform: translateY(0); } .anime-leave-to { transform: translateY(-100%); } .anime-enter-from { transform: translateY(100%); } .anime-enter-to { transform: translate(0); } </style>
The above is the detailed content of How vue3 solves the problem of excessive loading in each scene. For more information, please follow other related articles on the PHP Chinese website!

前端有没有现成的库,可以直接用来绘制 Flowable 流程图的?下面本篇文章就跟小伙伴们介绍一下这两个可以绘制 Flowable 流程图的前端库。

vue不是前端css框架,而是前端JavaScript框架。Vue是一套用于构建用户界面的渐进式JS框架,是基于MVVM设计模式的前端框架,且专注于View层。Vue.js的优点:1、体积小;2、基于虚拟DOM,有更高的运行效率;3、双向数据绑定,让开发者不用再去操作DOM对象,把更多的精力投入到业务逻辑上;4、生态丰富、学习成本低。

Vue3如何更好地使用qrcodejs生成二维码并添加文字描述?下面本篇文章给大家介绍一下Vue3+qrcodejs生成二维码并添加文字描述,希望对大家有所帮助。

本篇文章我们来了解 Vue2.X 响应式原理,然后我们来实现一个 vue 响应式原理(写的内容简单)实现步骤和注释写的很清晰,大家有兴趣可以耐心观看,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
