I would like to simplify the usage of the Vuetify tooltip. Instead of this:
<v-tooltip bottom>
<template v-slot:activator="{ on, attrs }">
<v-icon v-bind="attrs" v-on="on">mdi-home</v-icon>
</template>
<span>Tooltip</span>
</v-tooltip>
I would like something like this:
<v-icon tooltip="Tooltip" tooltip-position="bottom">mdi-home</v-icon>
As far as I know, Vuetify doesn't have this ability, but can it be achieved with a custom plugin or something else?