Vue2 learning notes Sharing -- bilibili Shangsi Valley video
1. Interpolation syntax
mustach syntax is used to parse the contents in the tag body. There is an expression in {xxx}} and all attributes in data can be read
2. Instruction syntax
Parsing tag attributes and tag body contents, binding events for tags, is also an expression, and the data in data can be read
1.v-bind
Used to resolve tag prope ...
Posted by havenpets on Sun, 06 Feb 2022 19:51:16 +0100
Third web front end training notes (CSS)
preface
This article mainly records the content of learning CSS in HTML.
1, CSS (Overview)
CSS (English full name: Cascading Style Sheets) Cascading Style Sheets is a computer language used to represent file styles such as HTML (an application of Standard General Markup Language) or XML (a subset of Standard General Markup Language). At p ...
Posted by KevinCB on Sun, 06 Feb 2022 19:40:09 +0100
Vue Knowledge Summary
Vue Knowledge Summary
1. Binding and Responsive Principles
Understanding of MVVM?
MVVM is composed of Model, View and ViewModel.
The Model layer represents a data model in which business logic for data modification and manipulation can be defined.View represents the UI component and is responsible for transforming data models into UI pres ...
Posted by fatmikey on Sun, 06 Feb 2022 18:41:52 +0100
HTML learning notes
HTML learning notes
1. Introduction to HTML
HTML The full name of is hypertext markup language(Hyper Text Markup Language),Is a markup language and is not case sensitive.
Learning website: https://www.w3school.com.cn/
2. HTML main structure
<!DOCTYPE html> <!-- Declaration header -->
<html>
<!-- Header label - ...
Posted by Ange52 on Sun, 06 Feb 2022 09:45:21 +0100
Use vue-in vue3 i18n@9
Use vue-in vue3 i18n@9
vue-i18n@9 Document Address Home | Vue I18n (intlify.dev)
vue-i18n is an internationalized plug-in for vue, which can easily integrate some localization functions into Vue.js project.
text
Download and Introduce
Start with a simple vue3 demo vue create <project name> Install vue-i18n npm install vue-i18n@next ...
Posted by sy-co on Sat, 05 Feb 2022 18:51:09 +0100
[JQuery Mobile mobile application development practice] JQuery Mobile foundation -- comprehensive practice of JQuery Mobile interface
8. Comprehensive practice of jQuery mobile interface
The main knowledge points include:
Development method using JQuery MobileDevelop skills in actual combatWhat kind of applications can be developed with JQuery Mobile
8.1 refreshing e-book reader
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" cont ...
Posted by timclaason on Sat, 05 Feb 2022 12:54:16 +0100
[front end] ES6 Promise object
Promise meaning
Promise is a solution for asynchronous programming. Promise is simply a container that holds the results of an event (usually an asynchronous operation) that will not end in the future. Syntactically speaking, Promise is an object from which you can get the message of asynchronous operation. Promise provides a unified API, and ...
Posted by AliceH on Sat, 05 Feb 2022 10:49:52 +0100
Deep understanding of Array types
Array plays an important role in front-end development. The following is an analysis of array types. The following main references: In depth understanding of Array in javascript 1, Basic definition
Array Object is used to hold multiple values in a single variable.
let array = [true, 12, 'is true']
here array Is an array. The values in the ar ...
Posted by skyriders on Sat, 05 Feb 2022 10:28:48 +0100
[learning notes] Html notes
simple notes when learning HTML, upload and record. The first time was to watch the video of crazy God, followed by tapping the code and writing notes. After a few days, I drove twice as fast to watch Lao Du's video, reviewed it, and supplemented the markdown notes by the way.
the video link is at the end of the text. Please corr ...
Posted by Rex__ on Sat, 05 Feb 2022 10:09:26 +0100
Second web front-end training notes (HTML forms and common character entities)
preface
This note mainly records the knowledge of learning HTML forms. If there are mistakes, please point them out. Thank you very much!
Attach a link to the learning video: [excellent limit] HTML+CSS+JavaScript+jQuery front-end compulsory course, Xiaobai teaching, front-end foundation, complete version_ Beep beep beep_ bilibili
1. form ...
Posted by freebsdntu on Sat, 05 Feb 2022 06:06:58 +0100