我想将item.ai_no放在box1和box2的值中。
You have exceeded your deployment quota, please deploy your functions in batches by using the --only flag, and wait a few minutes before deploying again. Go to https://firebase.google.com/docs/cli/#deploy_specific_functions to learn more
答案 0 :(得分:1)
您应该使用v-model
,或者还可以在:
道具前使用value
使用数据绑定。对于您的情况,请选中复选框的value
。
使用v-model
:
<input v-model="item.ai_no" type="checkbox">
使用数据绑定:
<input type="checkbox" name="box2" id="" :value="item.ai_no">
我说,改用v-model
。