[Vuejs]-How to update data in Vuejs?

0👍

✅

You shouldn’t create a Vue Instance in a repeatable function
Try it in following way:

   const testingLink = new Vue ({
     el: '#test',
     data: { selected: null }, 
     methods: {
       showDialog: function(data) { 
          this.selected = data
          $("#test").modal() 
       }
     }
   })

testingLink.showDialog(YOUR_DATA_YOU_WANT_TO_PASS) 

Leave a comment