I have a template:
<template v-slot:title> {{ $t('title') }} </template> and a component:
<v-col cols="12"> <h5 class="text-h5"> <slot name="title" /> </h5> </v-col> I want to wrap the slot with an <h4> tag only for one particular instance. I tried wrapping it inside the template, but it had no effect. How can I swap the element that wraps the slot?