[Vuejs]-How can i access this DOM element after async in vue js?

0👍

Have you tried to use vue ref on the div elements? Here it’s the documentation for it – https://vuejs.org/guide/essentials/template-refs.html

Also this is an example that uses ref. If you open the console you can see each div element.
https://codesandbox.io/s/elated-khorana-fri2en?file=/src/App.vue

Leave a comment