使用vue的for动态添加表单怎样拿到对应表单的值?

<template>
<view class="linklist" v-for="(item, index) in count" :key="index">
<input type="text" placeholder="请输入时长" @input="Getinput" v-model="anddate" />
<view class="run" @click="addform" v-if="count == index+1">+ 增加</view>
</view>
</template>
<script>
export default {
data(){
return{
count:1
}
},
methods:{
addform(){
                this.count = this.count+1
            },
}
}
</script>

循环的count,在data里变成
[
{txt:null},{txt:null},{txt:null},
]
input标签v-model="item.txt"就能拿到了

就像这种:

<tr :key='item.id' v-for='item in bosl'>
            <td>{{item.id}}</td>
            <td>{{item.name}}</td>
            <td>{{item.date}}</td>
</tr>
  data(){
                return {
                    bosl: [{
                        id: 1,
                        name: '王者',
                        date: ''
                    },
                    {
                        id: 2,
                        name: '穿越',
                        date: ''
                    },
                    {
                        id: 3,
                        name: '飞车',
                        date: ''
                    },
                    {
                        id: 4,
                        name: 'HTML',
                        date: ''
                    }]
                }
            },

谢谢你们给的思路
问题解决了,index很重要