[front end development] talk about the let and const commands in the core foundation of ES6
ECMAScript 6 Introduction
ECMAScript 6.0 (ES6 for short) is the next generation standard of JavaScript language, which has been officially released in June 2015. Its goal is to make JavaScript language can be used to write complex large-scale applications and become an enterprise development language. Over the past few years, the latest ...
Posted by complex05 on Thu, 17 Feb 2022 14:32:10 +0100
Code structure and overall logic of vue source code series 2
directory structure
dist packaged vue versionflow type detection, typeScript changed in 3.0script build related configurations of different versions of vuesrc source code Compiler compiler Core does not distinguish the core code of the platform Global API global API Constructor and prototype method of instance observer data response util ...
Posted by Baving on Thu, 17 Feb 2022 14:26:36 +0100
Learning notes of javascript advanced programming | 8.2 create object
follow [front end Xiaoao] , read more original technical articles
create object
Create a single Object: Object constructor and Object literalDisadvantages: using one interface to create many objects produces a lot of duplicate code
Relevant code →
Factory mode
Create a specific interface according to a specific object creation proce ...
Posted by purencool on Thu, 17 Feb 2022 08:28:28 +0100
React source code analysis series - render exception handling mechanism of react
Series article directory (synchronous update)React source code analysis series - render phase of react (I): introduction to the basic processReact source code analysis series - render phase of react (II): beginWorkReact source code analysis series - render phase of react (III): completeUnitOfWorkReact source code analysis series - render except ...
Posted by Eamonn on Thu, 17 Feb 2022 03:42:42 +0100
prop verification in vue
Prop
1 . prop case
Vue.component('blog-post', {
// camelCase in JavaScript
props: ['postTitle'],
template: '<h3>{{ postTitle }}</h3>'
})
<!-- In parent component kebab-case of -->
<blog-post post-title="hello!"></blog-post>
1234567
2 . Single data flow All props form a one-way downstream binding between their p ...
Posted by rage123456 on Thu, 17 Feb 2022 01:03:18 +0100
Medical management system based on SSM (Java graduation project)
[Chen Xi should work hard]: hello, I'm Chen Xi. I'm glad you can read it. My nickname is that I hope I can constantly improve and move forward towards excellent programmers! The blog comes from the summary of problems encountered in the project and programming. Occasionally, there will be reading and sharing. I will update the summary of relev ...
Posted by scheinarts on Wed, 16 Feb 2022 15:11:02 +0100
10 minute quick start Vue3 transition animation
Hello, I'm A bowl week , a front end that doesn't want to be drunk. If you are lucky enough to get your favor, I am very lucky~
Write in front
In actual development, in order to increase the user experience, transition animation is often used, and transition animation is through CSS transition and animation Implemented. In Vue, some compone ...
Posted by possiblyB9 on Wed, 16 Feb 2022 14:31:39 +0100
From how to use to how to implement a Promise
prefaceIn this article, we will learn how to use Promise and how to implement our own Promise. The explanation is very clear. It will be implemented step by step in the whole process, with detailed notes and principle explanation.If you think this article is helpful to you, ❤️ Follow + like ❤️ Encourage the author, the official account, the fir ...
Posted by boneXXX on Wed, 16 Feb 2022 08:05:07 +0100
React learning notes: related knowledge of classes
Learn from Ruan Yifeng's es6 tutorial. If you are interested, you can click here Check the original text.
1. Introduction
1-1, origin of class
The class of es6 can be regarded as a syntax sugar of the constructor. For example, there are the following constructors.
function Point(x, y) {
this.x = x;
this.y = y;
}
Point.prototype.toStr ...
Posted by keigowei on Wed, 16 Feb 2022 04:18:41 +0100
Deep action selector solves the problem of invalid checkbox style modified by uni app
The built-in component checkbox is required for the uni app form multi selector. See the link on the official website for details, as follows:
Checkbox - uni app official website (dcloud.io)
The official default style of h5 terminal is as follows:
Now you need to change the style to this:
So we began to modify:
<checkbox-group @ch ...
Posted by AwptiK on Wed, 16 Feb 2022 01:44:25 +0100