Front-end Learning--Vue.js Day1

1. Verification codes are implemented by the back end. 2. What is Vue.js At present, three popular front-end frameworks are Vue.js, React.js and Angular.js. Benefits of front-end frameworks: Reducing unnecessary operations, two-way data binding conce ...

Posted by djwiltsh on Tue, 27 Aug 2019 19:43:04 -0700

NestJs Learning Tour-Routing Guard

Welcome to NestJs Learning Tour Series Traditional Web applications to detect user login, privilege judgment and so on are done in the controller layer or middleware layer. In the current recommended modular and component architecture, functional recommendations of different responsibilities are split into different class files. NestJs has don ...

Posted by BoarderLine on Tue, 27 Aug 2019 01:09:38 -0700

(Part 2) A short story of imitating the template of the series ___________ of `Vue Ecology'.

(Part 2) A short story of imitating the template of the series ___________ of `Vue Ecology'. This mission Continue: Complete the first unfinished'Hot Update'configuration. Core: Complete the relevant compilation of'template analysis'module, many articles on template analysis are too shallow, this time we will discuss in depth, as much as pos ...

Posted by dewed on Wed, 21 Aug 2019 02:08:35 -0700

Webpack 4.0 Gets Into Deep

webpack4.0 (1) Installation and use of webpack 1. Introduction webpack is a packaging tool, which handles js files by default, can also handle other types of files with loaders, and can simplify our development process with plug-ins. 2. Configuration environment First install the preparation environment, node, because webpcak is a node-based pa ...

Posted by yumico23 on Tue, 20 Aug 2019 22:07:36 -0700

Engineering of VUE Front End (I) (Mastering Multiple Communication and Data Synchronization of Components)

Component Communication Parent-child component communication Parent-child props attribute Son heir $emit event These two official documents contain very detailed descriptions that are not explained. Or raise a chestnut: //parent.vue parent component <template> <div> parent: {{money}} <Son1 v-model="money"&gt ...

Posted by kind on Tue, 20 Aug 2019 03:22:52 -0700

Deep Understanding of the Zero-Start Tree Plug-in for vue Parent and Son Components

[TOC] Tree tree control is indispensable in front-end development, and now most websites display data in tree form. Because it's unfriendly for users to display all the big data. Today we handwritten a Tree plugin ourselves. iview provides controls IView is already mature, if I write the control and iView provides the control who is better, it ...

Posted by We Must Design on Mon, 19 Aug 2019 03:40:41 -0700

Some common design patterns of JavaScript

Definition of Design Patterns: Simple and Elegant Solutions for Specific Problems in Object-Oriented Software Design Design patterns are some of the solutions that predecessors summed up to solve a specific scenario. Maybe it's normal to feel that the design pattern is not so well understood when you first get into contact with programming with ...

Posted by antoine on Sun, 18 Aug 2019 23:25:49 -0700

vue development environment based on Web pack 4.x at novice level

Using webpack 4.x to build vue development environment in the initial stage Guide reading First of all, in this chapter, I will take you hand in hand to build a vue development environment using webpack 4.x. Students here may ask? "There ar ...

Posted by tbone-tw on Sun, 18 Aug 2019 21:28:01 -0700

Virtual Dom Explanation-

In the first article, the basic implementation of virtual DOM is explained. A brief review shows that virtual DOM is a virtual Node tree described by json data, and its real DOM nodes are generated by render function. And add it to its corresponding element container. While creating a real DOM node, register events for it and add some subsidiar ...

Posted by jbachris on Tue, 13 Aug 2019 21:13:57 -0700

Summary of knowledge points of react+dva+umi+ant-mobile

Recently, I took over other people's react project. I haven't done react before, and I haven't learned it. Through these two days'general study, I summarized some small knowledge points. 1. First, dva: You can connect the template layer with the data ...

Posted by peDey on Tue, 13 Aug 2019 05:58:20 -0700