Shang Silicon Valley super brother ----- Vue notes

note Scaffold file structure ├── node_modules ├── public │ ├── favicon.ico: Tab Icon │ └── index.html: Main page ├── src │ ├── assets: Storing static resources │ │ └── logo.png │ │── component: Store components │ │ └── HelloWorld.vue │ │── App.vue: Summarize all components │ │── main.js: Entry file ├── .gitignore: git Con ...

Posted by Lee W on Mon, 21 Feb 2022 04:18:55 +0100

Vue3.0 project actual combat + ElementUI from entry to actual combat

If you are Xiaobai, this set of information can help you become a big bull. If you have rich development experience, this set of information can help you break through the bottleneck 2022web full set of video tutorial front-end architecture H5 vue node applet Video + data + code + interview questions. Course address: Vue3 0 project actual ...

Posted by phwae on Sun, 20 Feb 2022 18:55:54 +0100

Basic usage and principle of SingleSpa micro front end

Let's talk about the disadvantages of singleSpa Not flexible enough to dynamically load css filescss is not isolatedThere is no js sandbox mechanism (there is no global object, and the application switched every time is the same window) The front-end micro touch can be used for a while qiankun micro front-end framework is very mature and i ...

Posted by the elegant on Sun, 20 Feb 2022 13:01:06 +0100

JavaScript Object. Use of defineproperty() method

Object. Use of defineproperty() method Object. The defineproperty () method will directly define a new property on an object, or modify an existing property of an object and return the object. Object.defineProperty(obj, prop, descriptor) Parameters: obj: object to define attributeprop: the name or Symbol of the attribute to be defined or ...

Posted by toodi4 on Sun, 20 Feb 2022 10:25:17 +0100

23_ Implementation of mini Vue for vue3 source code learning

Implementation of mini Vue for Vue3 source code learning Implement Mini Vue Here we implement a concise version of the mini Vue framework, which includes three modules: Rendering system module;Responsive system module;Application entry module; 1, Implementation of rendering system Rendering system, this module mainly includes three functio ...

Posted by mogster on Sun, 20 Feb 2022 09:44:30 +0100

How to build your own scaffold

Scaffolding The purpose of scaffolding is to quickly build the basic structure of the project and provide project specifications and conventions. At present, the scaffolds commonly used in daily work include Vue cli, create react app, angular CLI and so on. They all complete the rapid construction of content through simple initialization comma ...

Posted by guarriman on Sun, 20 Feb 2022 09:07:26 +0100

15 minutes to get started vue3 0 (summary)

This article mainly introduces the 15 minute start vue3 0. The example code introduced in this paper is very detailed, which has a certain reference value for everyone's study or work Vue 3 has not been officially released, but the Alpha version has been released. *** Shouting that I can't learn anymore, I honestly opened the Vue 3 document w ...

Posted by Tjk on Sun, 20 Feb 2022 01:28:41 +0100

Vue source code analysis -- normalization option

The article was first published on personal blog Small gray spaceNormalization optionsWhen new Vue creates a Vue instance for initialization, the first operation is the merge option. In the merge option, there are different merge strategies for different scenariosif (options && options._isComponent) { // When initializing subcomponent ...

Posted by dodgei on Sat, 19 Feb 2022 18:27:00 +0100

Using vuecli to quickly create a vue3 project

Tip: the following is the main body of this article for reference only 1, Install the latest Vue cli Official website: https://cli.vuejs.org/ About older versions Vue CLI package name changed from Vue CLI to @ vue/cli. If you have globally installed the old version of Vue CLI (1. X) Or 2 x) , you need to use NPM uninstall Vue cli - ...

Posted by Dimensional on Sat, 19 Feb 2022 14:41:57 +0100

vue learning notes 5: Global API of vue systematic learning notes

Reference documents: https://v3.cn.vuejs.org/api/global-api.html#createapp If you are using a CDN build, the global API can be accessed through the global object Vue, for example: const { createApp, h, nextTick } = Vue If you use ES modules, they can be imported directly: import { createApp, h, nextTick } from 'vue' Global functio ...

Posted by Evanthes on Sat, 19 Feb 2022 03:16:36 +0100