:src vue code example
Example 1: vue image src
<img v-bind:src="'/media/avatars/' + joke.avatar" />
Example 2: srcset vue
:srcset="image.mobile_path + ' 480w'"
Example 3: srcset vue
:srcset="`${image.mobile_path} 480w`"
<img v-bind:src="'/media/avatars/' + joke.avatar" />
:srcset="image.mobile_path + ' 480w'"
:srcset="`${image.mobile_path} 480w`"