Vue3 has become the default version, and these intersections with vue3 are here

catalogue Common knowledge points related to Vue3 I Encounter with Composition composite API 1.1 initial intersection with setup1.2 ref function1.3 reactive function1.4 precautions for setup1.5 calculation attributes1.6 watch monitoring1.7 watchEffect function1.8 life cycle function of vue31.9 customize the hooks function and experienc ...

Added by discombobulator on Sat, 05 Mar 2022 18:52:37 +0200

Vue3. Configuration method of X + vite introducing third-party Cesium package

1. Introduction In the process of application development based on Cesium, it is often encountered that the library to be used is not the standard Cesium official package. The Vue integration of the official package is quite mature and there are many materials to view. However, the unofficial package reference integration, especially in the Vu ...

Added by kittrellbj on Sat, 05 Mar 2022 18:44:34 +0200

Vue2 creates a project and configures Cesium to load a 3D map

catalogue I Preparation for creating vue project 1. Execute the create project command 2. Project name 3. Project description  4. Author description 5. Compilation method 6. Is vue routing installed 7. Whether to use ESLine 8. Select the preset ESLine rule 9. Set up unit test 10. Setting e2e  11. Select installation method ...

Added by Gabriel_Haukness on Sat, 05 Mar 2022 11:07:20 +0200

Can't you learn Vue Router? Then don't miss this article!

introductionCreating a single page application with Vue + Vue Router is very simple: through Vue JS, the application has been composed of components. When joining the Vue Router, map the components to the route so that the Vue Router knows where to render them.HTML<script src="https://unpkg.com/vue@3"></script> <script src="https ...

Added by djBuilder on Sat, 05 Mar 2022 08:38:27 +0200

Interviewer must ask series: handwritten publish subscribe mode and observer mode

catalogue preface 1. Publish subscribe mode definition Handwritten publish subscribe mode 2. Observer mode definition Handwriting observer mode 3. The fundamental difference between the two preface Publish subscriber mode and observer mode are two design modes. They are the same in essence, but there are also differences. There are ...

Added by martins on Sat, 05 Mar 2022 01:13:24 +0200

Handwritten vue2 0 source code Mixin mixing principle

preface This article is mainly written by vue2 0 source code Mixin mixing principle In the last article, we mainly introduced Vue Asynchronous update principle The core is to use nextTick to realize asynchronous queue. This article mainly includes Mixin mixing, which is a very key api in Vue. It plays an important role in merging options duri ...

Added by inerte on Fri, 04 Mar 2022 22:11:42 +0200

416Vue responsive principle

1. Course objectives Implement vue Simulate a minimum version of Vue Common questions of response principle in interview Learn from others' excellent experience and transform it into your own experience Whether the rule is a response to an instance of Vue Reassign the attribute to an object. Is it responsive Blood deficiency vue Prepare the ...

Added by randalusa on Thu, 03 Mar 2022 23:48:01 +0200

Beginners learn to deploy vue+nodejs+mongodb to Alibaba cloud

vue+nodejs+mongodb deployment project to alicloud This is my final design. I wanted to learn about project deployment. After two days, I finally succeeded. Ha ha, the reference link of this deployment process is as follows. It's well written. I also took notes and introduced the process in more detail. Just follow the steps. I'm also the first ...

Added by d-m on Thu, 03 Mar 2022 21:57:07 +0200

vue day 6 learning notes - introduction of bable and preparation of vue documents

1, Bable introduction Is a separate tool, independent of webpack, but can be used with webpack Function: convert es6 or typescript into ordinary js code Scenario: for example, an old browser doesn't know demo Arrow function of es6 in JS Used alone (when not used with webpack): npm install @bable/core @bable/cli@bable/core @bable/cli -D ...

Added by Dilbert137 on Thu, 03 Mar 2022 19:59:24 +0200

vue.config.js configuration

vue.config.js configuration item After the vue-cli3 scaffold is erected, there is no Vue in the project directory config. JS file, which needs to be created manually Create Vue config. js vue. config. JS (equivalent to the previous webpack.config.js) is an optional configuration file. If this file exists in the root directory of the projec ...

Added by mgilbert on Thu, 03 Mar 2022 17:59:07 +0200