Tutorialsplane

Vue.js Array Push


Vue.js Array Push– You can use .push method to add an element in array or object. Here in this tutorial, we are going to explain how you can add an element in array or object. You can also use our online editor to edit and run the code online.


Vue.js Array Push | Add Element To Array Example

You can add an element to an array or object simply as below-

Example:




 


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


Try it »

Ouput of above example-