I have an application written in spring boot which publishes the message for rabbitmq. and pushed to queue there. I have a front end application written in vue needs to consume the message from rabbitmq. I did a bit google around for related scenarios but can't find much help for it. Is it possible to consume rabbitmq queue message in my vuejs application? if yes how? Thanks for help in advance!!
Use Websockets + STOMP (as Randy Casburn commented).
This package can be installed with npm https://www.npmjs.com/package/webstomp-client and used as a service.
Good example can be found here https://github.com/JSteunou/webstomp-client/tree/master/example