[Vuejs]-Vue Get value from GET php

0👍

In Vue you can grab url parameters like this:

this.$route.query.user_type

Assuming your url is like this:

http:://example.com?user_type=exampletype

I’d also assume that you need to import the vuerouter, but i’m not 100% sure of that.

Leave a comment