P粉0837850142023-08-29 00:49:28
將選定的值作為路由參數傳遞:
$router.push({ name: "Inbox", params: { selectedValue: YOUR_VALUE } });
在收件匣頁面中,您可以透過以下方式存取:
$route.params.selectedValue
P粉0381618732023-08-29 00:36:29
我建議你開始使用Vuex :)
這是一個可以在整個應用程式中共用響應式資料物件的函式庫。
以下是你可能的程式碼範例:
// /store/index.js
export state: () => {
mailbox: '',
}
export mutation: () => {
SET_MAILBOX(state, mailbox) {
state.mailbox = mailbox
}
}
// your-page.vue <template> <v-autocomplete v-model="mailboxes" dense filled label="选择邮箱" :items="mailboxes" item-text='mailbox' item-value='mailbox'> </v-autocomplete> </template> <script> export default { computed: { mailboxes: { get() { this.$store.state.mailbox // 从Vuex存储中获取值 }, set(newMailbox) { this.$store.commit('SET_MAILBOX', newMailbox) // 更新Vuex存储 }, } } } </script>