.vue中v-model和checkbox配合使用

```html

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

```

```javascript

new Vue({

el: '#app',

data: {

arr: []

}

})

```

- 效果

猜你喜欢

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