[Vuejs]-Problem with trapping user_id from my dashboard component… — Laravel / Vue.js

0👍

The data propert of the Vue component will only accept plain objects. These can then be used in your templates as reactive variables.

You should access the document.querySelector(“meta[name=’user_id’]”).content() from within the deleteResource() as per the submitForm()

Leave a comment