[Vuejs]-Cannot listen and catch a tauri global event between two vue file

0👍

Tauri events are designed to communicate between the front end and the backend. Not between fontend and frontend.

https://tauri.app/v1/guides/features/events/

I don’t know if there’s a way to communicate between two windows without using the backend in rust, but you can create a tauri command and send the same payload from it, then listen from the other window.

Leave a comment