@click event not binded in dynamic sheet

Is possible to bind @click event in dynamic sheed/popup modal?

var dynamicSheet = $f7.sheet.create({
        content: `
           ...
           <button class="button" @click=${() => infoShipping(paymentmethod)}>BUTTON</button>
           ...
        `
        }).open();

infoShipping event is not fired when I click on button into sheet

you can’t.
but you can do it with routable-modals Routes | Framework7 Documentation

1 Like