When Vue stepping on the pit notes are introduced into ElementUI, the packaging failure repair record (error in. Node_moduleselement uilibtheme chalkindex. CSS)
Vue stepping on the pit notes: repair record of packaging failure when importing ElementUI (error in. / node_modules / element UI / lib / theme chat / index.css module build failed: modulebuilderror: module build failed: typeerror: this.getoptions is not a function)
Article catalogue
Vue stepping on the pit notes: repair record of packaging f ...
Posted by paul088 on Wed, 09 Mar 2022 01:54:19 +0100
vite + vue3 + setup + pinia + ts project practice
introduce
A project developed by using vite + vue3 + pinia + ant design Vue + typescript complete technical route, with the launch of second level development update, the new vue3 composition api combined with setup to enjoy the silky development experience, the new pinia state manager and excellent design experience (1k size), the barrier fre ...
Posted by somenoise on Wed, 09 Mar 2022 01:17:43 +0100
Properties and operations of JavaScript Objeact
Basic operation of object
create object
The function called with the new keyword is the constructor. Constructors are functions designed to create objects.
For example:
var obj = new Object();
Remember, when you use typeof to check an object, it will return object.
For more information about common objects, see the previous article " ...
Posted by Silver_Eclipse on Wed, 09 Mar 2022 00:56:23 +0100
Chapter 4 of JavaScript core knowledge -- web page special effects on PC and mobile terminals (including a lot of code analysis)
preface❤️ The gentle sunset is always mixed with poetry and distance ❤️
1, PC side web page effects
(1) Element offset offset series
1.1 offset overview
Offset translates to offset. We can dynamically get the position (offset) and size of the element by using the relevant attributes of offset series.
Obtain the position of the element ...
Posted by Lautarox on Tue, 08 Mar 2022 20:06:24 +0100
JavaScript personal learning notes Summary - jQuery
contentwebsiteJavaScript personal learning notes Summary - quick starthttps://blog.csdn.net/weixin_50594210/article/details/115112096?spm=1001.2014.3001.5501JavaScript personal learning notes Summary - functionhttps://blog.csdn.net/weixin_50594210/article/details/115113081?spm=1001.2014.3001.5501JavaScript personal learning notes Summary - ...
Posted by jvanv8 on Tue, 08 Mar 2022 14:32:37 +0100
JavaScript personal learning notes Summary - error handling
contentwebsiteJavaScript personal learning notes Summary - quick starthttps://blog.csdn.net/weixin_50594210/article/details/115112096?spm=1001.2014.3001.5501JavaScript personal learning notes Summary - functionhttps://blog.csdn.net/weixin_50594210/article/details/115113081?spm=1001.2014.3001.5501JavaScript personal learning notes Summary - ...
Posted by lookielookies on Tue, 08 Mar 2022 13:32:42 +0100
JS object oriented
Object can encapsulate multiple associated data to better describe a thing. Using objects to describe things is more conducive for us to separate real things into a data structure in the code: therefore, some programming languages are pure object-oriented programming languages, which are better than Java; When creating any class, you need to ab ...
Posted by jasonmills58 on Tue, 08 Mar 2022 11:34:51 +0100
Currying function, what is currying, why currying, and the implementation of advanced currying functions
Currying
Currying It is a high-order technology about function. It is used not only in JavaScript, but also in other programming languages.
Coriolism is a function conversion, which refers to converting a function from callable f(a, b, c) to callable f(a)(b)(c).
Corellization does not call functions. It just converts functions.
Let's take a ...
Posted by eazyefolife on Tue, 08 Mar 2022 10:57:41 +0100
Sorting out some knowledge points of CSS
CSS selector and its priority
Selector nameformatPriority weightid selector #id100Class selector .className10attribute selectors a[ref="eee"]10Pseudo class selectorli:last-child10tag chooser div1Pseudo element selectorli:after1Adjacent Sibling Selectors h1+p0Child selectors ul>li0Descendant Selectors li a0Wildcard selector*0
For selector pr ...
Posted by loony383 on Tue, 08 Mar 2022 08:15:49 +0100
ES6 (ECMAScript6) - ES11 from introduction to immortality
ES6: ECMAScript6
I. new features of ES6
1.let variable declaration and declaration features
1.1 let
Let keyword is used to declare variables. Variables declared with let have the following characteristics:
let a;
let b,c,d;
let e = 100;
let f = 521,g= 'iloveyou',h = [];
1. Variables cannot be declared repeatedly
let star = ' ...
Posted by simcoweb on Tue, 08 Mar 2022 07:06:32 +0100