[Vuejs]-Adding a Vue.js v-bind:style attribute to an element that is dynamically created after page load

0👍

vue’ify the whole thing and using a v-for to create the canvases would be ideal but if that is a problem, just use pure JS

document.querySelector('#canvas-container canvas') 

and add the style that way.

Leave a comment