- cssJuly 23, 2021 / 3 min read
You should know about H5 development knowledge - CSS
HTML5 is different from PC Web development. In the last article, we learned how to develop H5 about HTML. Now, we will learn how to develop H5 about CSS. - typescriptMay 15, 2021 / 2 min read
numeric and string enums enumerations in TypeScript
Enums are one of the few features TypeScript has which is not a type-level extension of JavaScript. - cssApril 7, 2021 / 2 min read
3 ways to achieve three-column layout
What is a three-column layout? - cssApril 6, 2021 / 2 min read
5 ways to achieve two-column layout
How well you know CSS layouts determines how fast you can develop pages in Web development. As Web technology continues to evolve, there are countless ways to implement layouts. - vueMarch 4, 2021 / 3 min read
How to use decorator in vue
I believe that you must have encountered in the development of the second frame confirmation related requirements. It doesn't matter if you're using the secondary frame component of the UI framework, or if you're using your own wrapped frame component. You can't avoid the problem of lots of duplicate code in multiple uses. This accumulation of code makes the project unreadable. The project's code quality also became poor. So how do we solve the problem of double popbox code duplication? Use decorators. - toolsFebruary 10, 2021 / 7 min read
Analysis of the principle of module federation
Module federation is implemented via the `ModuleFederationPlugin` plugin provided natively by Webpack, which has two main concepts: Host (consuming other Remote) and Remote (being consumed by Host). Each project can be Host or Remote, or both. - toolsFebruary 4, 2021 / 3 min read
Use webpack5 module federation for code sharing across applications
When project A needs to share A component of Project B, both sides need to be consistent in subsequent iterations. There are two ways to do this - htmlFebruary 3, 2021 / 7 min read
Do you really know html meta tags?
For a front-end engineer, metalabels are all too familiar. When I was just learning the front end, I wrote the following sentence the most - cssApril 12, 2020 / 2 min read
Powerful and interesting css background attribute
When it comes to the most interesting properties of CSS, I think background gets a lot of votes. The background is divided into - vueOctober 22, 2019 / 6 min read
Deep into the Virtual DOM
VDOM is the abbreviation of Virtual DOM(Virtual DOM). It refers to the DOM structure simulated by JS, and the comparison of DOM changes is done on the JS layer. In other words, A VDOM is a JS object.