Vue create login interface

1, Real create login interface 1. Before creating the login interface, we use helloword.vue as the login page. Now we really create the login interface, create a login folder under the foreground views folder, and then create an index.vue file under this folder as the login interface. Then the UTF-8...

Posted by Maverickb7 on Mon, 04 Oct 2021 00:33:35 +0530

JavaScript basic notes

1. JS basic syntax 1.1 three ways of introducing JS code Intra line import Button Internal introduction alert("Intra line import") External introduction 1.2 notes Single-Line CommentUTF-8...

Posted by adamlacombe on Mon, 04 Oct 2021 07:13:26 +0530

JavaScript hand tear new

preface What is new? The new operator creates an instance of a user-defined object type or one of the built-in object types with a constructor. Just look at the definition. It's still a bit obscure. Take a direct look at a specific example to understand the functions implemented by new in JavaSUTF-8...

Posted by Ton Wibier on Mon, 04 Oct 2021 23:09:58 +0530

Vue Create Home Page

The figure above is the first page interface to be implemented 1. Create a homepage 1. Create the layout.vue component in the foreground components as the first page. home page export default { } 2. Configuring Routes 1. ConUTF-8...

Posted by timgetback on Mon, 04 Oct 2021 23:12:19 +0530

Vue - simple combat

Vue - simple combat 13, Actual combat Adopt the actual teaching mode and combine the ElementUI component library to apply the required knowledge points to practice and lead everyone to master the use of Vue as quickly as possible; 1. Create project: Open command line in administrator mode EnteUTF-8...

Posted by huckfinne on Tue, 05 Oct 2021 06:03:13 +0530

Vue.js: Data Property and method

1, Data Property Component data Option is a function. Vue calls this function in the process of creating new component instances. It should return an object, and then Vue will wrap it through the responsive system and $ data Is stored in the component instance. For convenience, any top-level prUTF-8...

Posted by phpforever on Tue, 05 Oct 2021 08:17:19 +0530

ES6 related notes

1. New syntax of ES6 let Keywords added in ES6 for declaring variables let declared variables are valid only at the block level scope (scope in braces) //a is valid only in braces if(true){ let a = 10; var b = 10; } console.log(a); // a is not defined console.log(b); //OK There is no variable pUTF-8...

Posted by guyfromfl on Wed, 06 Oct 2021 00:12:09 +0530

Application of Html and Javascript

1, Experimental purpose Master the compilation of Html documents;Master the use of forms and labels;Master the transmission and reception of form information;Understand JavaScript technology and CSS technology. 2, Experimental requirements Write a registration interface, including: name, passwoUTF-8...

Posted by Nuser on Wed, 06 Oct 2021 02:51:30 +0530

Front End Learning Miscellaneous Notes

Large Front End Interpretation 1. Node.js Node.js is JavaScript running on the server sideNode.js is a time-driven I/O server JavaScript environment. Based on Google's V8 engine, the V8 engine executes JavaScript very quickly and performs very well. Quick Start for Node.js The browser's core coUTF-8...

Posted by BigBadKev on Wed, 06 Oct 2021 23:04:31 +0530

JS Knowledge Summary

Notes introduced by JS code: Code is executed sequentially from there Preceding code error in a js code, then the js following the code will not execute Multiple pairs of script tags can appear in the Html file. Script tags are typically placed on the last line of the body tag and sometimes appUTF-8...

Posted by antwown on Thu, 07 Oct 2021 03:43:47 +0530