Closed roberto910907 closed 9 months ago
Looks reasonable, I added this to my todo list.
@malekim thanks! That'd be great because I was thinking of automatically hiding the countdown modal whenever you move the mouse(no need to click over a button, if you're already interacting with the page I'm assuming you're back). I can try to open a PR this weekend :)
@roberto910907 You can now do this using refresh callback
<v-idle @refresh="onrefresh" />
function onrefresh() { console.log("user did something") }
I extended refresh event with additional data. There is an example in the documentation.
It'd be great if we can listen to the events registered in the component here. In that way, we can do certain actions when the values are restarted eg. close information modals, etc.
Maybe something like this:
Then we can do something like this:
@malekim Is there any other way to achieve the same with this library?