Preface
From version
To version
, official code cases and recommended use are template syntax. So in this article, we will also learn about the template syntax based on the official recommendations.
1. What is template syntax?
We canThe template syntax is directly understood as
HTML
An extension of syntax, all template node declarations, attribute settings, event registration, etc. are as followsHTML
syntax to perform extended design. According to the official statement, "allVue
The templates are syntax-level legalHTML
, can be compliant with the specifications andHTML
parser parsing”.
Vue uses an HTML-based template syntax that enables us to declaratively bind data from its component instances to the rendered DOM
2. Content rendering command
1. v-text
usev-tex
The t directive fills the data in plain text to its empty elements
// Combination<script setup> import { reactive } from 'vue' let student = reactive({ name: 'Jack', desc: '<h3>I am a child from China! </h3>' }) </script> <template> <!-- usev-textinstruction,Fill data into empty elements in plain text --> <div v-text=""></div> <!-- v-text:Display data in plain text --> <div v-text=""></div> <!-- The following code will report an error:div Elements are not empty elements --> <!-- <div v-text="">This is originaldivdata</div> --> </template>
2. {{ }} Interpolation expression
Render data in plain text at a certain location in the element
// Combination<script setup> import { reactive } from 'vue' let student = reactive({ name: 'Jack', desc: '<h3>I am a child from China! </h3>' }) </script> <template> <!-- Interpolation expressions:Render data in plain text at a certain location in the element --> <div>This is a DIV element,{{ }},{{ }}</div> </template>
3. v-html
usev-html
Instructions to use dataHTML
Syntax fills its empty elements
// Combination<script setup> import { reactive } from 'vue' let student = reactive({ name: 'Jack', desc: '<h3>I am a child from China! </h3>' }) </script> <template> <!-- usev-htmlinstruction,Use dataHTMLSyntax fills its empty elements --> <div v-html=""></div> <!-- v-html:by HTML Syntax display data --> <div v-html=""></div> <!-- The following code will report an error:div Elements are not empty elements --> <!-- <div v-html="">This is originaldivdata</div> --> </template>
3. Two-way binding instructions
1. v-model
v-model
Two-way data binding instructions, view data and data source synchronization
Under normal circumstancesv-model
Directives are used in form elements:
- The <input> and <textarea> elements of text types bind the value attribute and listen for input events
- <input type="checkbox"> and <input type="radio"> bind to the checked property and listen for change events
- <select> will bind the value attribute and listen for change events
// Combination<script setup> import { ref } from 'vue' let inputText = ref('ABC') // Single line text boxlet message = ref('The following points are available in this update:...') // Multi-line text boxlet open = ref(true) // Turn on the light (check box)let determine = ref('uncertain') // Is it OK (check box)let likes = ref(['YMQ']) // Hobbies (check box)let sex = ref('woman') // Gender (radio button)let level = ref('B') // // Certificate level (single-select drop-down box)let city = ref(['Su C', 'Su B']) // City you have been to (multiple-select drop-down box) </script> <template> <!-- Single line text box --> <input type="text" v-model="inputText"> <hr> <!-- Multi-line text box --> <textarea v-model="message"></textarea> <hr> <!-- By default,Value of the check box:true/false --> <input type="checkbox" v-model="open"> lamp <hr> <!-- Custom checkbox values: true-value/false-value --> <input type="checkbox" true-value="Sure" false-value="uncertain" v-model="determine"> Is it sure <hr> <input type="checkbox" value="LQ" v-model="likes"> basketball <input type="checkbox" value="ZQ" v-model="likes"> football <input type="checkbox" value="YMQ" v-model="likes"> badminton <input type="checkbox" value="PPQ" v-model="likes"> table tennis <hr> <input type="radio" value="man" v-model="sex"> male <input type="radio" value="woman" v-model="sex"> female <hr> Certificate Level: <select v-model="level"> <option value="C">primary</option> <option value="B">intermediate</option> <option value="A">advanced</option> </select> <hr> Cities I've been to: <select multiple v-model="city"> <option value="Su A">Nanjing</option> <option value="Su B">Wuxi</option> <option value="Su C">Xuzhou</option> <option value="Su D">Changzhou</option> </select> </template>
2. V-model modifier
Modifier | effect | Example |
---|---|---|
.number |
Automatically convert user input values into numeric types | <input ="age" /> |
.trim |
Automatically filter the beginning and end blank characters entered by the user | <input ="msg" /> |
.lazy |
existchang Time rather thaninput Updated on time |
<input ="msg" /> |
// Combination<script setup> import { ref } from 'vue' let age = ref(20) let nickname = ref('') </script> <template> <p>Convert the user input value to a numeric value .number,Lazy update .lazy</p> <!-- 。number Convert the user input value to a numeric value,If the content entered by the user cannot be converted into numbers,The data source will not be updated --> <!-- .lazy exist change Update data source,Instead input --> <input type="text" ="age"> <hr> <p>Remove the beginning and end blank characters</p> <input type="text" ="nickname"> </template>
4. Attribute binding instructions
- Responsively bind an element attribute, it should be used
v-bind:
instruction - If the bound value is
null
orundefined
, then this property will be removed from the rendered element - because
v-bind
Very commonly used, we provide specific abbreviation syntax:
// Combination<script setup> import { reactive } from 'vue' let picture = reactive({ src: '/2015/0424/', // Image address width: 200 // Display width}) </script> <template> <input type="range" min="100" max="500" v-model=""> <hr> <!-- v-bind: for src Properties binding specified data source --> <img v-bind:src="" v-bind:width=""> <hr> <!-- : yes v-bind: Abbreviation form --> <img :src="" :width=""> <hr> <!-- 如果绑定的值yes null or undefined,Then this property will be removed from the rendered element --> <button @click=" = null">设置宽度forNULL</button> </template>
1. Dynamically bind multiple attribute values
Use directlyv-bind
To bind multiple attributes and their values to elements
// Combination<script setup> import {reactive} from 'vue' let attrs = reactive({ class: 'error', id: 'borderBlue' }) </script> <template> <!-- Use directly v-bind To bind multiple attributes and their values to elements --> <button v-bind="attrs">I'm a normal button</button> </template> <style> .error { background-color: rgb(167, 58, 58); color: white; } #borderBlue { border: 2px solid rgb(44, 67, 167); } </style>
Rendering result:
<button class="redBack" >I am a normal button</button>
2. Bind class and style attributes
class
andstyle
Can be used like other propertiesv-bind
Binding them with dynamic strings; however, when dealing with more complex bindings, generating strings by splicing is cumbersome and error-prone; therefore,Vue
Specially forclass
andstyle
ofv-bind
Usage provides special functional enhancements; in addition to strings, the value of an expression can also be an object or an array.
class attribute binding
Bind Object
// Combination<script setup> import { ref, reactive } from 'vue' let btnClassObject = reactive({ error: false, // Theme color flat: false // Shadow}) let capsule = ref(false)// Capsuleslet block = ref(false)// piece </script> <template> <input type="checkbox" v-model=""> error <input type="checkbox" v-model=""> flat <br> <br> <button :class="btnClassObject">I'm a normal button</button> <hr> <input type="checkbox" v-model="capsule"> capsule <input type="checkbox" v-model="block"> piece <br> <br> <button :class="{ 'rounded': capsule, 'fullWidth': block }">I'm a normal button</button> </template> <style> button { border: none; padding: 15px 20px; background-color: rgb(179, 175, 175); } .error { background-color: rgb(167, 58, 58); color: white; } .flat { box-shadow: 0 0 8px gray; } .rounded { border-radius: 100px; } .fullWidth { width: 100%; } </style>
Bind array
// Combination<script setup> import { ref, reactive } from 'vue' let btnTheme = ref([]) // Button class array let capsule = ref(false)// Capsuleslet widthTheme = ref([])// Width array </script> <template> <input type="checkbox" value="error" v-model="btnTheme"> error <input type="checkbox" value="flat" v-model="btnTheme"> flat <br> <br> <!-- Directly use array data sources,What are the values in the array,Directly in the elementclassThe corresponding class name appears in --> <button :class="btnTheme">I'm a normal button</button> <hr> <input type="checkbox" v-model="capsule"> capsule <input type="checkbox" value="fullWidth" v-model="widthTheme"> piece <br> <br> <!-- Use arrays and objects together --> <button :class="[{ 'rounded': capsule }, widthTheme]">I'm a normal button</button> </template> <style> button { border: none; padding: 15px 20px; background-color: rgb(179, 175, 175); } .error { background-color: rgb(167, 58, 58); color: white; } .flat { box-shadow: 0 0 8px gray; } .rounded { border-radius: 100px; } .fullWidth { width: 100%; } </style>
style attribute binding
Bind Object
// Combination<script setup> import { reactive, ref } from 'vue' let btnTheme = reactive({ backgroundColor: '#FF0000', // Background color color: '#000000' // Text color}) let backColor = ref('#0000FF') // Background colorlet color = ref('#FFFFFF') // Text colorlet borRadius = ref(20) // Border rounded corners </script> <template> Background color:<input type="color" v-model=""> Text color:<input type="color" v-model=""> <br> <br> <!-- style:You can directly bind the object data source,But the attribute name of the object data source is the style attribute(Hump nomenclature,kebab-casedform) --> <button :style="btnTheme">I'm a normal button</button> <hr> Background color:<input type="color" v-model="backColor"> Text color:<input type="color" v-model="color"> Border rounded corners:<input type="range" min="0" max="20" v-model="borRadius"> <br> <br> <!-- style:Can write objects directly,But the object's attribute name is the style attribute(Hump nomenclature,kebab-casedform) --> <button :style="{ backgroundColor: backColor, color, 'border-radius': borRadius + 'px' }">I'm a normal button</button> </template> <style> button { border: none; padding: 15px 20px; background-color: rgb(179, 175, 175); } </style>
Bind array
Can also give:style
Bind an array of multiple style objects that are merged and rendered on the same element
// Combination<!-- Script area --> <script setup> import { ref, reactive } from 'vue' const btnTheme = ref([ { backgroundColor: '#FF0000', // Background color color: '#FFFFFF' // Text color }, { borderRadius: 0 // Border rounded corners } ]) const colorTheme = reactive({ backgroundColor: '#000000', // Background color color: '#FFFFFF' // Text color}) const radiusTheme = reactive({ borderRadius: 0 // Border rounded corners}) </script> <!-- View area --> <template> Background color:<input type="color" v-model="btnTheme[0].backgroundColor"> Text color:<input type="color" v-model="btnTheme[0].color"> capsule:<input type="checkbox" true-value="5px" false-value="0" v-model="btnTheme[1].borderRadius"> <br> <br> <!-- Pass directly into the array --> <button :style="btnTheme">I'm a normal button</button> <hr> Background color:<input type="color" v-model=""> Text color:<input type="color" v-model=""> capsule:<input type="checkbox" true-value="5px" false-value="0" v-model=""> <br> <br> <!-- Write arrays directly --> <button :style="[colorTheme, radiusTheme]">I'm a normal button</button> </template> <style> button { padding: 15px 20px; border: none; } </style>
5. Conditional rendering instructions
1. v-if、v-else-if、v-else
-
v-if
Directives are used to render elements conditionally; this content will only be rendered when the directive's expression returns true value. -
v-else-if
What is provided is the correspondingv-if
ofelse if
Block, it can be reused several times in a row - You can also use
v-else
forv-if
Add oneelse
Blocks -
v-else
andv-else-if
The instructions must be coordinated -
v-if
Use the directive together, otherwise it will not be recognized, and no other elements can appear in the middle of the statement blockv-if
Support in<template>
Used on the element, this is just an invisible wrapper element, and the final rendering result will not contain this<template>
element
// Combination<script setup> import { ref } from 'vue' let isShow = ref(false) // Whether to displaylet age = ref(20) // agelet week = ref(3) // Weekly </script> <template> Whether to display:<input type="checkbox" v-model="isShow"> <!-- v-if:The element will be rendered only when the instruction expression is true. fortrueThis element is created when,forfalseThis element will be destroyed when --> <h3 v-if="isShow">This is a normal title tag</h3> <hr> age: <input type="range" min="0" max="100" v-model="age"> {{ age }} <!-- v-if:Can cooperate v-else-if and v-else To build multiple judgment conditions,Don't mix irrelevant elements between them --> <h1 v-if="age < 18">Minor</h1> <!-- <span>Insignificant elements</span> --> <h2 v-else-if="age < 35">youth</h2> <h3 v-else-if="age < 50">middle aged</h3> <h4 v-else>elderly</h4> <hr> What day of the week: <input type="range" min="1" max="7" v-model="week"> {{ week }} <!-- v-if:Can cooperate template Element use,The final rendering result does not include this <template>element --> <template v-if="week == 1 || week == 3 || week == 5 || week == 7"> <h1>Can swim</h1> </template> <template v-else> <h1>不Can swim</h1> </template> </template>
2. v-show
-
v-show
Instructions for displaying an element by conditionv-show
Will be hereDOM
Keep this element in rendering -
v-show
Switched only the element name isdisplay
ofCSS
property -
v-show
Not supported in<template>
Used on elements, and cannot be used withv-else
Use with
// Combination<script setup> import { ref } from 'vue' let isShow = ref(false) // Whether to displaylet age = ref(20) // agelet week = ref(3) // Weekly </script> <template> Whether to display:<input type="checkbox" v-model="isShow"> <!-- v-show:The element will be rendered only when the instruction expression is true. Regardless of whether the expression of the directive is true or false,This element is retained in the element for true The element's display:none style,for false This element will be added display:none style --> <h3 v-show="isShow">This is a normal title tag</h3> <hr> age: <input type="range" min="0" max="100" v-model="age"> {{ age }} <h1 v-show="age < 18">Minor</h1> <h2 v-show="age >= 18 && age < 35">youth</h2> <h3 v-show="age >= 35 && age < 50">middle aged</h3> <h4 v-show="age >= 50">elderly</h4> <hr> What day of the week: <input type="range" min="1" max="7" v-model="week"> {{ week }} <!-- v-show:Can't cooperate template Element use --> <!-- <template v-show="week == 1 || week == 3 || week == 5 || week == 7"> <h1>Can swim</h1> </template> <template v-shw="week == 12 || week == 4 || week == 6"> <h1>不Can swim</h1> </template> --> </template>
3. The difference between v-if and v-show
-
v-if
It is "real" conditional rendering, because it ensures that event listeners and subcomponents within the conditional block are destroyed and rebuilt when switching. -
v-if
Also lazy: if the condition value isfalse
, then nothing will be done; the condition block will only be when the condition becomestrue
It's rendered only when -
v-show
Elements will always be rendered regardless of the initial conditions, only CSSdisplay
Properties will be switched -
v-if
There is higher switching overhead, andv-show
There is a higher initial rendering overhead; if frequent switching is required, usev-show
Better; if the binding conditions are rarely changed at runtime,v-if
It would be more suitable
6. Event binding instruction
We can usev-on:
Instructions (abbreviated as @) to listenDOM
Event, and execute the corresponding event when the event is triggeredJavaScript
usage:v-on:click=""
or@click=""
usage:
// Combination<script> export default { data: () => ({ volume: 5 // Volume [0, 10] }), methods: { // Add volume addVolume() { // If the volume is not at the highest value, add the volume if ( !== 10) { ++ } }, // Reduce the volume subVolume() { // If the volume is not at the minimum value, reduce the volume if ( !== 0) { -- } }, // Set the volume setVolume(value) { // Determine whether the volume is between the value range if (value >= 0 && value <= 10) { = value } } } } </script> <template> <h3>Current volume:{{ volume }}</h3> <!-- v-on: Event binding --> <button v-on:click="addVolume">Add volume</button> <button v-on:click="subVolume">Reduce the volume</button> <hr> <!-- @ yes v-on: Abbreviation of --> <button @click="setVolume(0)">Mute</button> <button @click="setVolume(5)">Moderate volume</button> <button @click="setVolume(10)">Maximum volume</button> </template>
1. Event modifier
Event modifier | illustrate |
---|---|
.prevent |
Block default behavior |
.stop |
Stop events from bubbles |
.capture |
Trigger the current event handling function in capture mode |
.once |
The bound event is only triggered once |
.self |
Event handling function is triggered only when it is the current element itself |
.passive |
Shows the browser the default behavior of not wanting to block events |
.prevent
.prevent
: The default behavior of blocking this event
// Combination<script setup> // Say hellofunction say(name) { ('Hello:' + name) } </script> <template> <!-- .prevent Modifier blocks the default behavior of hyperlinks(Jump to Baidu page) --> <a href="" rel="external nofollow" rel="external nofollow" @="say('baiDu')">Baidu</a> </template>
.stop
.stop
: Prevent the bubbling phenomenon caused by events
// Combination<script setup> // Say hellofunction say(name) { ('Hello:' + name) } </script> <template> <div class="divArea" @click="say('DIV')"> <!-- .stop:Prevent bubbling events --> <button @="say('BUTTON')">Bubble button</button> </div> </template> <style> .divArea { padding: 30px; border: 2px solid blue; } </style>
.once
.once
: The bound event only triggers1
Second-rate
// Combination<script setup> // Say hellofunction say(name) { ('Hello:' + name) } </script> <template> <!-- .once:The bound event is only triggered once --> <button @="say('BUTTON')">Click me to try</button> </template>
.self
.self
: Only inIt triggers event handling function when the current element itself
// Combination<script setup> // Say hellofunction say(name) { ('Hello:' + name) } </script> <template> <!-- .self:Only trigger events on this element are valid,Its child elements are invalid --> <div class="divArea" @="say('DIV')"> <button>I'm a normal button</button> </div> </template> <style> .divArea { padding: 30px; border: 2px solid blue; } </style>
.capture
.capture
Add a listener to the element
- When an element event bubbling, the event of the element of the modifier is triggered first
- If there are multiple modifiers, it will be triggered in sequence from the outside to the inside
// Combination<script setup> // Say hellofunction say(name) { ('Hello:' + name) } </script> <template> <!-- .capture Add a listener to the element 1:When element events bubble,The event that triggers the element of the modifier first 2:If there are multiple modifiers,Then it is triggered from the outside to the inside --> <div class="divArea" @="say('DIV-1')"> <div class="divArea" @click="say('DIV-2')"> <div class="divArea" @="say('DIV-3')"> <button>I'm a normal button</button> </div> </div> </div> </template> <style> .divArea { padding: 30px; border: 2px solid blue; } </style>
.passive
.passive
: The default behavior of not blocking events, with.prevent
Do not use it at the same time
// Combination<script setup> function eventPrevent() { // Block event default behavior () } </script> <template> <!-- .passive:Execute the default behavior first,Do not consider whether the executed code contains () --> <a href="" rel="external nofollow" rel="external nofollow" @="eventPrevent">Baidu</a> </template>
2. Key modifier
Key alias:.enter
、.tab
、.esc
、.space
、.up
、.down
、.left
、.right
、.delete
(captureDelete
andBackspace
Two buttons)
System modifier:.ctrl
、.alt
、.shift
、.meta
Accurate modifier:.exact
// Combination<script setup> // Popup messagefunction showMessage(message) { (message) } </script> <template> The key pressed contains Enter Key Events: <input type="text" @="showMessage('You pressed the Enter key')"> <hr> The key pressed contains Shift Enter Key Events:<input type="text" @="showMessage('You pressed the Shift + Enter key')"/> <hr> The keys pressed are only Shift Enter Key Events:<input type="text" @="showMessage('You only pressed the Shift + Enter key')"/> </template>
3. Mouse button modifier
Mouse button modifier:.left
、.right
、.middle
// Combination<!-- Script area --> <script setup> function showTest(text) { (text) } </script> <!-- View area --> <template> <!-- Right-click the mouse --> <button @="showTest('The right mouse button is pressed')">Right-click the mouse</button> <hr> <!-- When clicked,The middle mouse button is used --> <button @="showTest('The middle mouse button is pressed')">When clicked,The middle mouse button is used</button> <hr> <!-- Press the left mouse button --> <button @="showTest('The left mouse button is pressed')">Press the left mouse button</button> </template> <!-- Style area --> <style> button { border: none; padding: 15px 20px; } button:active { box-shadow: 0 0 5px grey; } </style>
7. List rendering command
usev-for
Directives render a list based on an array
1. v-for rendering array
grammar:
in
Previous parameter:item in items
item
:valueitems
: An array that needs to be loopedin
The first two parameters:(value, index) in items
value
:valueindex
:indexitems
: An array that needs to be looped
// Combination<script setup> import { ref } from 'vue' // courselet subject = ref([ { id: 1, name: 'Vue' }, { id: 2, name: 'Java' }, { id: 3, name: 'UI Design' }, { id: 4, name: 'Hadoop' }, { id: 5, name: 'Later film and television' }, ]) </script> <template> <!-- item in itmes item:value,当前Looping arrayvalue itmes:Looping array --> <h6>v-for Rendering array, v-for="item in itmes"</h6> <ul> <li v-for="sub in subject"> serial number:{{ }} --- name:{{ }} </li> </ul> <hr> <!-- Deconstructing objects --> <h6>v-for Rendering array, v-for="{ Deconstruction…… } in itmes"</h6> <ul> <li v-for="{ id , name } in subject"> serial number:{{ id }} --- name:{{ name }} </li> </ul> <hr> <!-- (value, index) in itmes value:value index:index itmes:Looping array --> <h6>v-for Rendering array, v-for="(value, index) in itmes"</h6> <ul> <li v-for="(sub, index) in subject"> serial number:{{ }} --- name:{{ }} --- index:{{ index }} </li> </ul> <hr> <!-- Deconstructing objects --> <h6>v-for Rendering array, v-for="({ Deconstruction…… }, index) in itmes"</h6> <ul> <li v-for="({ id , name } , index) in subject"> serial number:{{ id }} --- name:{{ name }} --- index:{{ index }} </li> </ul> </template>
2. v-for rendering object
usev-for
Iterates through all properties of an object, and the order of traversal will be based on the call to the object()
The return value to determine
grammar:
in
Previous parameter:value in object
value
: Attribute valueitems
: Objects that need to be loopedin
The first two parameters:(value, name) in object
value
: Attribute valuename
:keyitems
: Objects that need to be loopedin
The first three parameters:(value, name, index) in object
value
: Attribute valuename
:keyindex
:indexitems
: Objects that need to be looped
// Combination<script setup> import { reactive } from 'vue' let student = reactive({ styNum: '007', // Student ID name: 'Jack', // name age: 18 //age}) </script> <template> <!-- value in object value:Attribute value object:Looping object --> <h6>v-for Rendering objects, v-for="value in object"</h6> <ul> <li v-for="value in student"> {{ value }} </li> </ul> <hr> <!-- (value, name) in object value:Attribute value name:Attribute name object:Looping object --> <h6>v-for Rendering objects, v-for="(value, name) in object"</h6> <ul> <li v-for="(value, name) in student"> Attribute name:{{ name }} --- Attribute value: {{ value }} </li> </ul> <hr> <!-- (value, name, index) in object value:Attribute value name:Attribute name index: index object:Looping object --> <h6>v-for Rendering objects, v-for="(value, name, index) in object"</h6> <ul> <li v-for="(value, name, index) in student"> Attribute name:{{ name }} --- Attribute value: {{ value }} --- index:{{ index }} </li> </ul> </template>
3. Manage status through key
When the data of the list changes, by default,vue
Will reuse existing ones as much as possibleDOM
element, thereby improving rendering performance; however, this default performance optimization strategy will cause stateful lists to not be updated correctly.
To givevue
A prompt so that it can track the identity of each node, thereby improving rendering performance while ensuring that the stateful list is updated correctly; at this time, a unique key attribute needs to be provided for each item:key
Notes:
-
key
The type can only beNumber/String
-
key
Values must be unique - It is recommended that the loop list has an attribute when
key
(The value of this property is unique in this list) - Don't use index
key
- Recommended to use
v-for
Must specify the instructionskey
The value of
// Combination<script setup> import { ref } from 'vue' // courselet subject = ref([ { id: 1, name: 'Vue' }, { id: 2, name: 'Java' }, { id: 3, name: 'Hadoop' } ]) // Add coursesfunction addSubject() { // (front of the array) ({ id: 4, name: 'Python' }) } </script> <template> <button @="addSubject">Add courses(Front of the array)</button> <h3>Not usedkeyvalue</h3> <ul> <li v-for="sub in subject"> <input type="checkbox"> {{ sub }} </li> </ul> <hr> <h3>Use indexkeyvalue</h3> <ul> <li v-for="(sub, index) in subject" :key="index"> <input type="checkbox"> {{ sub }} </li> </ul> <hr> <h3>Use list attributeskeyvalue(This property must be unique in this list)</h3> <ul> <li v-for="sub in subject" :key=""> <input type="checkbox"> {{ sub }} </li> </ul> </template>
References:
Everyone is welcome to join my community, and some selected content will be published from time to time in the community:/forums/db95ba6b828b43ababd4ee5e41e8d251?category=10003
The above is the template syntax in Vue3. If you don’t understand, you can ask me in the comment section or chat with me privately. Some new functions will be released in the future. Please stay tuned.
This is the end of this article about template grammar in Vue3. For more related vue3 template grammar content, please search for my previous articles or continue browsing the related articles below. I hope everyone will support me in the future!