Chapter 9 Panel Components

Learning Points: 1. Loading method 2. Attribute List 3. Event List 4. List of methods This lesson focuses on how to use the Panel component in EasyUI, which is independent of other components. 1. Loading Method //class Loading Method <div class="easyui-panel" data-options="closable:true"> <p>Content Area</p&g ...

Posted by justinjkiss on Tue, 04 Jan 2022 09:11:26 +0100

Practice and principle of Vue dynamic component

Our company has a workbench building product, which allows you to build a workbench page by dragging widgets. The platform has built-in some common widgets. In addition, it also allows you to upload and use self-developed widgets. This paper will introduce its implementation principle from the perspective of practice. ps. this project was c ...

Posted by sunil.23413 on Tue, 04 Jan 2022 06:50:15 +0100

Vue2 source code learning notes-1

reference resources:Vue technology decryptionInterviewer: Vue instance mounting processThe difference between runtime compiler and runtime only in vueExplanation of different buildsIf there are any errors, please point them out~For more study notes, please stamp: https://github.com/6fa/WebKno...Contents of this document:1. Source code core dire ...

Posted by kevinjo on Tue, 04 Jan 2022 06:20:21 +0100

Conditional rendering and list rendering of wechat applet

conditional rendering wx:if In the framework, use wx:if = "" to determine whether the code block needs to be rendered: <view wx:if="{{condition}}"> True </view> You can also add an else block with wx:elif and wx:else: <view wx:if="{{length > 5}}"> 1 </view> <view wx:elif="{{length > 2}}"> 2 & ...

Posted by dharvey on Tue, 04 Jan 2022 02:35:56 +0100

VS2019 create Windows service

To write a daily report on the enterprise wechat every day, a robot is added to remind you to write a daily report regularly, so a local service is made. 1, Create enterprise wechat robot Click on the top right of the group to add a robot   The Webhook address above will be used in the next three steps 2, Create project 1.VS create a ne ...

Posted by dominod on Tue, 04 Jan 2022 02:11:18 +0100

Learning notes for scoped attribute in Vue

#What is scoped An attribute in the style tag in vue. Using the scoped attribute can make the style in the tag only act on the elements in the current component. #Principle of scoped When it was first used, there were many tags like 'data-v-xxxx' in the html tag and style of page debugging, but I didn't care. After understanding the working ...

Posted by 2005 on Tue, 04 Jan 2022 01:05:37 +0100

D7.VUE basic learning 20211231

V conditional rendering 5.1 v-if The v-if instruction is used to conditionally render a piece of content. This content will only be rendered when the expression of the instruction returns the truth value. <h1 v-if="awesome">Vue is awesome!</h1> You can also add an else block with v-else: <h1 v-if="awesome">Vue is awesom ...

Posted by zero-one on Mon, 03 Jan 2022 23:22:13 +0100

web technology -- Introduction to AJAX

AJAX Javaweb - emmm... I don't know how many days it is. happy has been nearly four months Ajax asynchronous refresh technology First of all, you should understand the asynchronous refresh technology of AJAX. Local refresh is widely used. The native AJAX steps are also fixed. You can create, register, initialize open, and send the ...

Posted by Zetusko on Mon, 03 Jan 2022 23:18:17 +0100

Basic configuration of axios, request interceptor and response interceptor

1: Basic introduction In actual projects, axios needs to be encapsulated once to uniformly configure the basic configuration of axios, request interceptor, response interceptor, etc; 2: Basic configuration We can use axios Create ([config]) to create an instance with axios general configuration. The following are common configuration items ...

Posted by nariman on Mon, 03 Jan 2022 22:14:17 +0100

Knowing these 20 regular expressions can save 1000 lines of code

Regular expression, a very old and powerful text processing tool, can quickly realize a very complex business logic with only a very short expression statement. Mastering regular expressions can greatly improve your development efficiency. Regular expressions are often used to verify fields or arbitrary strings, such as the following JavaScrip ...

Posted by KFC on Mon, 03 Jan 2022 20:10:08 +0100