[Vuejs]-Show modal automatically if theres a query parameter in url Vue

1👍

If you are using Vue Router, you can extract the parameter from the route object.

console.log(this.$route.query.token) // abcd123

If you can extract it, you can see if token has any value, and if it does, display the modal. Do the logic inside the mounted() method.

Leave a comment