Interpretation of Vue source code -- Analysis of compiler

When learning becomes a habit, knowledge becomes common sense. Thank you for your attention, likes, collections and comments. The new video and articles will be sent to WeChat official account for the first time. Li Yongning The article has been included in github warehouse liyongning/blog , welcome to Watch and Star. Special instructions D ...

Added by Encrypt on Thu, 03 Mar 2022 02:42:16 +0200

Interpretation of Vue source code -- Analysis of compiler

When learning becomes a habit, knowledge becomes common sense. Thank you for your attention, likes, collections and comments.The new video and articles will be sent to WeChat official account for the first time. Li YongningThe article has been included in github warehouse liyongning/blog , welcome to Watch and Star.Special instructionsDue to th ...

Added by friday_13 on Wed, 02 Mar 2022 03:11:44 +0200

Chrome V8 source code 48 The mystery of weak type addition, "+" source code analysis

1 IntroductionJavaScript is a weakly typed language. When its variables and expressions participate in the operation, even if the type is incorrect, they can get the correct type through implicit conversion, which is like all types can carry out all operations for users. By analyzing the addition source code of V8, this paper leads you to under ...

Added by sheen.andola on Tue, 01 Mar 2022 12:02:00 +0200

Interpretation of Vue source code -- Hook Event

When learning becomes a habit, knowledge becomes common sense. Thank you for your attention, likes, collections and comments.The new video and articles will be sent to WeChat official account for the first time. Li YongningThe article has been included in github warehouse liyongning/blog , welcome to Watch and Star.prefaceHook Event (Hook Event ...

Added by Arenlor on Tue, 01 Mar 2022 02:23:42 +0200

Common knowledge and skills of Typescript type

Typescript type system This paper is mainly organized and translated from lib es5. d. TS, Microsoft Typescript documents and MDN documents. Email: 291148484@163.com CSDN home page: https://blog.csdn.net/qq_28550263?spm=1001.2101.3001.5343 Address: https://blog.csdn.net/qq_28550263/article/details/123173417 catalogue 1. Daily ty ...

Added by heepofajeep on Mon, 28 Feb 2022 06:19:07 +0200

[lib.es5] TypeScript interface of ArrayBuffer and DataView

TypeScript interface of ArrayBuffer and DataView Email: 291148484@163.com CSDN home page: https://blog.csdn.net/qq_28550263?spm=1001.2101.3001.5343 Address: https://blog.csdn.net/qq_28550263/article/details/123169738 catalogue 1. ArrayBuffer 1.1 grammar 1.1.1 return value1.1.2 abnormality 1.2 description 1.2.1 properties ...

Added by MemphiS on Sun, 27 Feb 2022 18:04:26 +0200

vue life cycle

Each Vue instance will go through a series of initialization processes when it is created - for example, it needs to set data listening, compile templates, mount the instance to the DOM, and update the DOM when the data changes. At the same time, some functions called life cycle hooks will be run in this process, which gives users the opportuni ...

Added by icaro on Sat, 26 Feb 2022 14:04:48 +0200

Vue3 + Vite2 + TypeScript + Pinia(Vuex)+JSX build an enterprise level development scaffold [out of the box]

With the popularity of Vue3, more and more projects have begun to use Vue3. In order to quickly enter the development state, I recommend a set of enterprise level development scaffolding out of the box. The framework uses: Vue3 + Vite2 + TypeScript + JSX + Pinia(Vuex) + Antd. If you don't talk much nonsense, just start rolling. The scaffold is ...

Added by marsooka on Sat, 26 Feb 2022 13:43:35 +0200

Problems encountered when grouping options in ng select

In the compilation of resident choice components, my original idea was to achieve the effect like above, showing the name, telephone number, ID number of the residents, and grouping them according to the plot and building, but there were some bug in the group.When I get residents again, I get all residents first and then pass filter to obtain t ...

Added by rcmehta_14 on Sat, 26 Feb 2022 12:05:12 +0200

TS common types for getting started with TypeScript

Previous chapter: 3. TS common types for getting started with typescript (2) 3.13 enumeration types The function of enumeration is similar to that of literal type + union type combination. It can also represent a set of explicit optional values. Enumeration: defines a set of named constants. It describes a value that can be one of these name ...

Added by David-fethiye on Sat, 26 Feb 2022 03:02:58 +0200