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 Delete All Items from Array</h3> <p>Items: {{items}}</p> <button @click='deleteAllItems'>Delete All Items</button> </div> <script type="module"> const app = new Vue({ el: "#app", data() { return { items: ['Font Awesome Icons', 'Tutorials Plane', 'Sarkari Naukri Exams'] } }, methods: { deleteAllItems() { this.items = [] } } }); </script> </body> </html>