screen_rotation
Copied to Clipboard
<html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <div id="app"> <h3>Vue Js Single Select Checkbox</h3> <div v-for="item in items"> <input type="checkbox" v-model="selected" :value="item" @click="singleSelection">{{item}}<br> </div> <p>Selected: {{ selected }}</p> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { items: ['Vue', 'React', 'Angular', 'Node', 'Express', 'Bootstrap', 'AWS'], selected: [] } }, methods: { singleSelection() { this.selected = []; } } }); </script> </body> </html>