[Vuejs]-How to use v-slot with img tag?

0👍

Why not using a slot like described here: Enclosing a router-link tag in an image in vuejs

<nuxt-link to="/" class="px-3">
  <img
    :src="require('~/assets/ProfitApp-icon.png')"
    height="55"
    alt="logo"
  />
</nuxt-link>

Leave a comment