When I run my Vue app, the console shows:
You are running Vue in development mode. Make sure to turn on production mode when deploying for production. See mo
Absolutely the most simple solution is to check for the window.location from you Vue component. That would look something like this:
if (window.location.href === 'YOUR DEVELOPMENT URL') { //preset form values here }