Vue - know and know

Article catalogue Project preparation1. First meet Vue2. Template syntax3. Data binding4. The second way to write el and data5. MVVM model6. Event handling Basic useParameter transferModifier 7. Calculate attributes and monitor Calculation propertiesListening properties 8. class and style classstyle 9. Conditiona ...

Added by Gast on Wed, 09 Mar 2022 04:48:59 +0200

script setup in vue3

script setup < script setup > is a new syntax sugar from Vue3. The type is the suggestion in Vue's Git RFC. It should be made clear that this is not intended to completely replace any current writing. Its purpose is to provide developers with more concise syntax and simplify the lengthy template code when using the Composition API to wri ...

Added by e11rof on Wed, 09 Mar 2022 03:49:19 +0200

Vue 2.x notes of common knowledge points (10000 word notes)

Vue 2.x notes Notes of common knowledge points. If there are mistakes, you are welcome to give advice. If the number of words exceeds 10000, you have to taste them carefully catalogue Vue 2.x notes 1. Create a new Vue instance2. Prevent production prompt generation3. Template syntax 3.1 interpolation syntax3.2 instruction syntax ...

Added by newbiez on Wed, 09 Mar 2022 03:17:08 +0200

Vue.js efficient front-end development [Vue list rendering]

All chapters > > > > Article catalogue 1, v-for instruction 1. Use of v-for instruction2. Practical exercises (to be updated) 2, Calculation properties 1. Calculation attribute creation and use2. Practical exercises (to be updated) 3, Listening properties 1. Create and use listening properties2. Practical exercises (to ...

Added by rlindauer on Wed, 09 Mar 2022 03:17:49 +0200

Vue basic syntax

Vue basic syntax 1.v-bind2. Conditional rendering3. List rendering4. Binding event5. Bidirectional data binding6. Use of components [crazy God talking about Java] Vue's latest quick start tutorial is easy to understand Notes: Vue basic syntax, Vue binding events, Vue two-way binding, Vue component explanation. 1.v-bind v-bind is ...

Added by MerlinJR on Wed, 09 Mar 2022 02:46:12 +0200

The use of Vue Router 4 is thoroughly explained in an article

Vue 3.X using Vue router 4 X for routing configuration, let's study how to use Vue router 4 x. All usage methods in this article are using the Composition API. This paper introduces Vue router 4 step by step Let your new version of Vue router build a simple system X has a complete understanding, and then can easily drop Vue router 4 X is appli ...

Added by julian1 on Wed, 09 Mar 2022 02:40:16 +0200

Introducing vant into the uniapp project

The introduction of vant UI into the uniapp project and the pit it stepped on The uniapp framework can write multi terminal projects and generate multi terminal code. When introducing vant UI, make sure to write the project at that end. The introduction of vant components in applet side and H5 project is different. This is very unfriendly to b ...

Added by xec on Wed, 09 Mar 2022 02:09:27 +0200

python -- regular expression (re module) detailed explanation

When Python needs to match the name of a module, it can be brought into Python through the regular expression. The approximate matching process of regular expressions is: 1. Compare the characters in the expression and text in turn, 2. If each character can be matched, the matching is successful; Once there are characters that fail to match, t ...

Added by gilreilly on Tue, 08 Mar 2022 07:29:00 +0200

PyWebIo quickly build web applications

Part1 what is PyWebIo PyWebIO provides a series of command-based interactive functions to obtain user input and output on the browser, turning the browser into a "rich text terminal", which can be used to build simple Web applications or browser based GUI applications. Using PyWebIO, developers can write applications like writing ter ...

Added by wama_tech on Tue, 08 Mar 2022 07:28:07 +0200

if and switch statements of branch statements

Branch statement if branch statement 1. Decide whether to execute a piece of code according to a concept or a condition 2. Grammatical form (1) if statement if (conditional) {snippet} Meaning: when the condition is true, the code segment in {} will be executed, otherwise it will not be executed var age=16 if (age>=18){ console.log( ...

Added by ebgames56 on Tue, 08 Mar 2022 07:21:05 +0200