1.v-bind (abbreviation:) To use data variables defined in data in component properties, or to use expressions in component properties, you need to specify them with v-bind. Abbreviation: 2. v-on (abbreviated as @) Listening to DOM events click.stop can prevent events from penetrating 3.v-model Two-way data binding 4. v-if, v-else-if, v-else Conditional judgment to determine whether a certain content is mounted 5.v-show Conditional judgment to determine whether a certain content is displayed 6. Ternary Operator 7. Empty tag block 8. v-for: List rendering <template> <view v-bind:class="msg" v-bind:data="1+2"> {{msg}} world!-{{num}} <button v-on:click="show">Click me</button> <input v-model="msg" /> <view v-if="flag">vue</view> <view v-else>H5</view> <view>{{flag ? 'Show':'Hide'}}</view> <block> <text>block empty tag</text> </block> <view v-for="(item, index) in arr">{{index+1}}:{{item}}</view> <view @click="c1"> Parent <view @click.stop="c2">Child</view> </view> </view> </template> <script> export default{ //Initialize data, //data:{}, using object form data will not change, not recommended data(){ return { msg:'hello',//variable arr:['vue','H5','CSS'],//array flag:true,//Boolean value num: 1 } }, onLoad(){ setTimeout(()=>{ this.num++; },2000) }, methods:{ show(){ console.log('clicked'); this.flag=!this.flag; }, c1(){ console.log('I am the parent'); }, c2(){ console.log('I am a child'); } } } </script> SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: MySQL data types full analysis
>>: Docker installation rocketMQ tutorial (most detailed)
In the following example, when the width of the td...
1. What is Vue Vue is a progressive framework for...
First, what is database partitioning? I wrote an ...
Table of contents Preface start React Lifecycle R...
1. Environmental Preparation Tencent Cloud Server...
Previously, https://www.jb51.net/article/205922.h...
Table of contents nextTick Mixins $forceUpdate se...
Let's look at the case first. Use vue+swiper ...
This article is an integrated article on how to c...
need: Use vue to realize QR code scanning; Plugin...
Detailed explanation of JDBC database link and re...
Preface In fact, the humble "!" has man...
1. Grammar location [=|~|~*|^~|@] /uri/ { ... } 2...
Preface During the development process, you will ...
Table of contents 1. Database master-slave classi...