I have a strange bug that I've narrowed down, but unfortunately can't create a minimal reproducible example (forgive me!)
I'm using Nuxt.js, Vuetify, Vue.js
When I run in development mode, the app works.
But when I run in production mode, the following component causes the app to freeze (all buttons become unresponsive).
<v-btn nuxt :to="to" color="primary" large v-text="text" />
When I replace v-text="text" with {{ text }} as an inner node, everything begins to work again.
Does anyone know what would change in Vue production mode, or why v-text would be the culprit?