vue中v-model和checkbox配合使用


<div id="app">

<input type="checkbox" v-model='arr' name="" id="" value="aa">aa

<input type="checkbox" v-model='arr' name="" id="" value="bb">bb

<input type="checkbox" v-model='arr' name="" id="" value="cc">cc

<input type="checkbox" v-model='arr' name="" id="" value="dd">dd

{{arr}}

</div>


new Vue({

el: '#app',

data: {

arr: []

}

})

  • 效果
    在这里插入图片描述

​​

猜你喜欢

转载自blog.csdn.net/xuefeng11111/article/details/85526701