如何将Vue项的值放在复选框中?

时间:2019-07-02 07:42:29

标签: laravel vue.js

我想将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

1 个答案:

答案 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

查看此https://jsfiddle.net/greenfoxx/pfb50zms/