Vue3 learning journey -- love Vue3--Vue3 basic syntax -- template syntax -- conditional rendering -- list rendering -- why Vue's v-for needs to bind the key attribute

Vue3 learning journey – falling in love with vue3 – vue3 basic grammar (II) – template grammar Continued: Vue3 learning journey – meet vue3 - learn about vue3 Vue3 learning journey – meet vue3 - know vue3 (II) Vue3 learning journey – falling in love with vue3 – vue3 basic syntax (I) – and basic ...

Posted by creativeimpact on Mon, 17 Jan 2022 08:59:05 +0100

vue3 knowledge point 5.3 vuecli3 project static resources

#vue3 knowledge point 5.3 vuecli3 project static resources 1, How to introduce static resources: 1. Static resource placement directory vue-cli3.0 has two directories for static resources, public and src/assets. 1.public public can store unchangeable files (equivalent to static in vue-cli2.x), external JS and CSS resources, and pictures. ...

Posted by PHPNewbie55 on Wed, 05 Jan 2022 23:37:27 +0100

Vue Learning Notes - vue-cli Plus Practice

1. Vue: First vue-cli project 1. What is vue-cli vue-cli is an officially provided scaffold for quickly generating a vue project template; A predefined directory structure and code base is like choosing a skeleton project when we create a Maven project, which is scaffolding and makes our development faster. Main functions: Unified director ...

Posted by MA06 on Mon, 03 Jan 2022 11:03:37 +0100

Electron incremental update

Since writing the electron series, many students have asked some questions, mainly for the incremental update of electron. I wrote it before Incremental update (II) However, the Windows mode requires the administrator permission package, which is not very elegant. Moreover, if you want to drag the function, due to the permission problem, the dr ...

Posted by tjmbc on Mon, 20 Dec 2021 09:32:26 +0100

What are the main ways to improve the performance of Vue3.0?

1, Compilation phase Reviewing Vue2, we know that each component instance corresponds to one   watcher   Instance, which records the data properties used during component rendering as dependencies. When the dependency changes and the setter is triggered, it will notify the watcher, so as to re render the associated components Im ...

Posted by Kaylub on Mon, 08 Nov 2021 21:26:58 +0100