Tutorialsplane

Vue.js Remove item from Array


Vue.js Remove item from Array– You can use .splice method to remove an item from array or object. Here in this tutorial, we are going to explain how you can remove items from array. You can also use our online editor to edit and run the code online.


Vue.js Remove item from Array Example

Here we have created simple example to remove items from array or object.

Example:




 


<div id="app">
   <h1>List</h1>
  <div v-for="(listItem, index) in list">
    
    <button>
      Delete List
    </button>
  </div>
  
  <button>
    Add New List
  </button>
  
  <b>{{ list }}</b>
</div>
        


Try it »

Ouput of above example-