I've set up a modal sheet component with the following structure:
<f7-sheet
class="myClass"
style="height: auto"
swipe-to-step
:backdrop="false"
>
<div class="sheet-modal-inner">
<div class="sheet-modal-swipe-step">
...
</div>
</div>
<template #static>
<MyComponent></MyComponent>
</template>
</f7-sheet>
Currently, I have to click a button in order to see part of the Modal Sheet, which can then be swiped up to reveal the full content:
<f7-button sheet-open=".myClass">Swipe To Step</f7-button>
My objective is to display the partial Modal Sheet by default, eliminating the need for clicking a button. When I add "opened" to , the entire sheet opens at once instead of just the swipe-step part.
Do you have any suggestions on how to achieve this? Thank you.