How to implement Vue application to transfer selected options to another page
P粉308089080
2023-08-28 09:44:23
<p>On the first page of my Vue app, I have a dropdown menu containing a list of email addresses. </p>
<p>I want to save the selected value/text and use it as a parameter or variable on the inbox page I route to. </p>
<p>This is the code for the dropdown menu using v-autocomplete: </p>
<pre class="brush:html;toolbar:false;"><v-autocomplete dense
filled
label="Select Email"
v-model="mailboxes"
:items="mailboxes"
item-text='mailbox'
item-value='mailbox'>
</v-autocomplete>
</pre>
<p>This is a button that acts as a v-btn and is used to route to the inbox page. </p>
<pre class="brush:html;toolbar:false;"><v-btn rounded color="primary"
@click="$router.push('Inbox')">
Load mailbox</v-btn>
</pre>
<p>How do I save the value of a selected mailbox for use on the inbox page I route to? </p>
Pass the selected value as a routing parameter:
From the Inbox page you can access via:
I suggest you start using Vuex :)
This is a library that can share reactive data objects throughout your application.
Here are examples of your possible code: