Uni-App学习:常用Vue记录

绑定Vue内容前需要先在Vue中的data函数中声明好需要绑定的数据

v-html 主要用于显示html标签内容 用法:v-html="html"

v-bind 主要用于绑定标签属性内容 用法:v-bind:style="style"

v-on 主要用于绑定标签点击时触发的函数事件 用法:v-on:click="clicks"

v-if Vue中的标签判断语句,如果条件为true标签会渲染在页面,如果为false那么标签会被隐藏 用法:v-if="条件"

v-for 用于将数组渲染成列表 用法:<view v-for="(item,index) in list">{{item}}---{{index}}</view>

v-model 用于双向绑定数据 用法:<input class="inp" v-model="input"/>

...