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>
- [Vuejs]-Vue components not rendering when @nuxtjs/storybook is used in a Vue Storefront Next project – possibly a Typescript issue?
- [Vuejs]-Sort json in nuxt by percentage value
Source:stackexchange.com