Can anyone help me with defining a method that will execute after a timeout? Specifically, I would like to trigger a $emit event after a specified timeout, but I am unsure of how to achieve this...
<v-snackbar
v-model="snackbar"
:color="primary"
:timeout="5000"
>
{{ text }}
<v-btn
dark
flat
@click="snackbar = false"
>
Close
</v-btn>
</v-snackbar>