Solved the tricky issue of updating the read status of the notification

I wanted to update the read status of a notification upon clicking on it, by sending a PUT request on click. But a simple function using `@click` on a nuxt-link refused to work. Turned out, it's unique to nuxt-link &/or vue-router, that I need to access the native event in the browser instead of the Vue event, using `@click.native`. I would have NEVER found this if @yuyu had not pointed it out! So thank you bro!