Tag Archives: JavaScript

Introducing 8 Component Communication Mechanisms in Vue.Js | Vue.Js Interview Questions

  This post will summarize 8 component communication mechanisms in Vue.Js. The daily development of component communication is close, and familiarity with component communication can better develop business. Vue.js Passing values between components 1. The parent component passes the value to the child component Generally, this involves the following procedures: Introduce child components in parent components Register subcomponents… Read More »

Best practices of using the Thunk in JavaScript

The evaluation strategy of a compiler is usually divided into pass-by-call and pass-by-call. Thunk functions are implemented by pass-by-call by the compiler. They often put parameters into a temporary function and then put This temporary function is passed into the function body. This temporary function is called the Thunk function. Evaluation strategy Compiler evaluation strategies are usually divided… Read More »