Skip to content
Advertisement

How can i pull form values to another page

How can I get the email address entered while registering to this next page? If the query method is appropriate, it is my preference. I want to pull the e-mail address I entered on the signUp page to the verify Code page.

VerifyCode.vue

JavaScript

SignUp.vue

JavaScript

Advertisement

Answer

As @kissu, mentioned On SignUp page, you can use $router to route to the verifyCode page with query equal to email

JavaScript

And in VerifyCode page you can get the query value with

JavaScript

FULL EXAMPLE OF CODE.

VerifyCode.vue

JavaScript

SignUp.vue

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement