Vue (Crazy Learning Notes) 2021-10-8

Vue (Crazy Learning Notes) Vue's core libraries focus solely on the view layer to facilitate integration with third-party libraries or existing projects. HTML + CSS + JS: View: Show users, refresh background data Network communication: axios Page Jump: vue-router State management: vuex Vue-UI :UTF-8...

Posted by deepson2 on Fri, 08 Oct 2021 22:06:04 +0530

Representation of data types in TypeScript

Representation of data types in TypeScript Data type TypeScript is supported in JavaScript, and TypeScript extends the type, but all that ends up running is compiled JavaScript code. Number Like JavaScript, all numbers in TypeScript are floating-point numbers. These floating-point numbers are oUTF-8...

Posted by mastercool on Fri, 08 Oct 2021 23:25:00 +0530

JavaScript's strange and practical posture has been added six more

1, Deconstruction tips Usually, we need to use some attributes in a nested multi-layer object, which will be deconstructed for use let obj = { part1: { name: 'zero or one', age: 23 } } // deconstruction const { part1: { name, age } } = obj // use console.log(name, age) // zero or one twenty-thrUTF-8...

Posted by sajidfiaz on Sat, 09 Oct 2021 09:35:30 +0530

Use webSocket +videojs live broadcast function

Use webSocket +videojs live broadcast function I wish the little partner Yuanshen 2.2 walnut son who likes the collection and forwarding will not be crooked.:. ゚ (◕ ‿ ◕) ノ.: + ゚ Let's talk about the method first (because I have two demo s, I write them separately, but the general logic is the sUTF-8...

Posted by AceE on Sat, 09 Oct 2021 09:43:53 +0530

The second pairing programming operation of software engineering practice in autumn 2021

Which course does this assignment belong toConstruction method - Autumn 2021 - Software Engineering of Fuzhou UniversityWhat are the requirements for this assignmentThe second pairing programming operation of software engineering practice in autumn 2021Student number031902134Twinning partner stUTF-8...

Posted by shakuni on Sat, 09 Oct 2021 11:45:23 +0530

Gourmet Heroes, in the complete recipe components, the effect of the fragmented components

This is the third introductory article about the project and its effect! The first two articles can be viewed on my home page. If you do not know how to inform me in time. Let's talk about this effect below. First, the picture above, so you can understand it! All of these are the results we wanUTF-8...

Posted by Termina on Sat, 09 Oct 2021 22:24:19 +0530

[algorithm LeetCode] 1047. Delete all adjacent duplicates in the string (double pointer; stack)

1047. Delete all adjacent duplicates in the string - LeetCode Release: October 10, 2021 24:08:12 Problem description and examples Given the string S composed of lowercase letters, the duplicate deletion operation will select two adjacent and identical letters and delete them. Repeat the dedupliUTF-8...

Posted by hinchcliffe on Sat, 09 Oct 2021 23:34:21 +0530

[algorithm LeetCode] 236. Nearest common ancestor of binary tree (recursion; backtracking)

236. LeetCode, the nearest common ancestor of binary tree Issued: October 9, 2021 01:52:45 Problem description and examples Given a binary tree, find the nearest common ancestor of two specified nodes in the tree. Baidu Encyclopedia defines the nearest public ancestor as: "for two nodes p and qUTF-8...

Posted by sickness01 on Sun, 10 Oct 2021 00:14:20 +0530

javascript review the next day

Use of arrays: 1. Array: an elegant way to store a set of data under a single variable 2. Create an array with new var arr = new Array(); // An empty array was created // 3. Use array literal to create array [] var arr = []; // An empty array was created var arr1 = [1, 2, 'pink teacher', true];UTF-8...

Posted by travelkind on Sun, 10 Oct 2021 08:21:50 +0530

ES6 -- creation, addition and inheritance of classes

catalogue 1, Create classes and objects 2, Class 3, Class inheritance super() method 4, Subclasses inherit the methods of the parent class and extend their own methods 5, super keyword calls a normal function of the parent class 6, Precautions for using classes Summary of precautions for using UTF-8...

Posted by LennyG on Sun, 10 Oct 2021 08:33:55 +0530