v2.6.20
Cusomization of the user options menu icon
- A #menuIcon slot was added to customize the user options menu icon, if you don't like the default burger menu icon. The slot exposes a
isOpen
boolean, to show a different icon depending on the open state, and thecolor
defined by your config for the general text color of the menu.
<template #menuIcon="{ isOpen, color }">
<div class="text-2xl">
{{ isOpen ? '👆' : '👇' }}
</div>
</template>