标签:computed ddl add button code input 添加 bind v-for
v-model :给input绑定,配合computed属性可以输入改变值,配合methods属性可以点击按钮改变值
<input type="text" v-model="thisVal"><button @click="addList()">添加</button>
v-for : li循环生成数组,记得绑定key
<ul> <li v-for="(list,index) in lists" v-bind:key="index">{{list}}</li> </ul>
标签:computed ddl add button code input 添加 bind v-for
原文地址:https://www.cnblogs.com/miangao/p/9629558.html