[Vuejs]-Use Vue's directive to change Dom style but not working

0👍

You have to append a v- in your HTML to use it as Vue directive, like following:

<div style="width:1280px;height:800px;background-size:100% 100%" v-imgload="product.bgImg">
...

You can check more details in documentation.

Leave a comment