[Vuejs]-I cannot get information to display in my slot

0👍

The problem comes from the v-html. You cannot put anything between the div because of this directive.

I don’t know what you’re trying to do but maybe you should put the slot aside of the div ?

<template>
  <div>

    <div class="icon-wrapper" v-html="svg">
    </div>

    <slot name="icon">sdfsdf</slot>

  </div>
</template>

Leave a comment