A list of ElementUI issues
1. When there is only one input under the form, press enter to refresh the page
The reason is that the default submission behavior of the form is triggered, and @ submit. Is added to the El form native. Just prevent.
<el-form inline @submit.native.prevent>
<el-form-item label="order number">
<el-input
v-model="query ...
Posted by evmace on Thu, 23 Dec 2021 15:21:28 +0100
CSS basic notes (CSS positioning)
Catalogue of series articles
Article catalog
catalogue
Catalogue of series articles
Article catalog
preface
1, Positioning
1.1 why positioning is needed?
1.2 positioning composition
1.3 static positioning
1.4 relative positioning (important)
1.5 absolute positioning (important)
1.6 origin of Zi Jue Fu Xiang
1.7 fixed positioni ...
Posted by monkey_05_06 on Thu, 23 Dec 2021 14:38:45 +0100
Vue basic operation learning record
Vue basic operation learning record
#: id selector . : calss selector
Basic steps for Vue introduction
1. Import the development version of Vue js 2. Create a Vue instance object and set the el attribute and data attribute 3. Use template syntax to render data to the page
el: mount point
vue instance scope: the element hit by the el optio ...
Posted by jwer78 on Thu, 23 Dec 2021 03:25:00 +0100
First understand the use and design mode of vue
catalogue
Basic introduction of vue
What is vue?
Why use vue?
vue advantages
shortcoming
Understanding that Vue is a progressive framework (interview question)?
Spa (single page application)
Relatively complex
Tell me about your understanding of SPA single page. What are its advantages and disadvantages?
Download and introduction of v ...
Posted by 1bigbear on Wed, 22 Dec 2021 18:13:40 +0100
Notes on Web Front End Development - Chapter 2 HTML Language Section 4 Hyperlink Labels
Preface
This section describes the usage of hyperlink labels, namely label a, and related application examples.
1. Hyperlink Labels
A tag, also known as a hyperlink tag, can be used on pictures or text, or on the navigation bar, click and jump to a new page for users to browse. The hyperlink is denoted as <a href = "Web address ...
Posted by billy_111 on Tue, 21 Dec 2021 08:46:06 +0100
Sincere sum: on the proxy pattern of design pattern in Java
There are many categories of design patterns in Java, mainly divided into three categories: creation type, structure type and behavior type. The proxy pattern to be introduced in this article belongs to one of the structural design patterns. The following is a detailed explanation of the proxy pattern in Java.
1, Agent mode
What is the agen ...
Posted by bytes on Tue, 21 Dec 2021 03:41:07 +0100
C1 task 03-Web foundation and layout
Task 1: use rich text editor
Observe various labels
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Onine</title>
<style>
.table1{
width: 500px;
}
.tr1,
.tr3{
background-color: gray;
}
.tr2 ...
Posted by dennisflash on Mon, 20 Dec 2021 21:21:01 +0100
QR code business card making
Level 1: structural design of QR code business card page
Relevant knowledge
In order to complete this level task, you need to master: 1 Define table settings, 2 Span label.
Definition list
Definition lists are often used to explain and describe terms or nouns. Unlike unordered and ordered lists, the list items of a definition list do not ...
Posted by basement on Mon, 20 Dec 2021 18:45:24 +0100
Github picture acceleration experience
Github drawing bed
It is estimated that many people are using this, that is, using Github raw as a drawing bed, which is specifically realized by Picgo. Of course, you can also upload it manually.
Convert picture format to Webp
WebP was originally released in 2010. Its goal is to reduce the file size, but achieve the same image quality as ...
Posted by tex1820 on Mon, 20 Dec 2021 13:58:07 +0100
Front end development_ HTML5_CSS part - Transform
Transform
1. Introduction
In the previous study, we learned two special effects: transition and animation. Let's learn a new effect transformation. The transformation effect is mainly a series of operations on two-dimensional (2D) and three-dimensional (3D) coordinates. Let's learn it together.
2. Transform
(1) transformation overview: CSS ...
Posted by xcoderx on Sun, 19 Dec 2021 22:22:47 +0100