Hydration mismatch when using a menu. Also causes error on navigating away #17163
Answered
by
KaelWD
chrissyast
asked this question in
Q&A
-
// myPage.vue
<template>
<div>
<nuxt-link :to="link">
Go to this other page
</nuxt-link>
<v-btn>
Click me
<v-menu activator="parent">
<v-list-item v-for="x in ['a','b','c']" :key="x">
{{ x }}
</v-list-item>
</v-menu>
</v-btn>
</div>
</template> Console log on loading page...
New page doesn't load. Comment out the menu and try the link again and it redirects successfully. |
Beta Was this translation helpful? Give feedback.
Answered by
KaelWD
Apr 17, 2023
Replies: 1 comment 1 reply
-
You need |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
chrissyast
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need
createVuetify({ ssr: true })