You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Module version
1.12.3
I first saw it in 1.12.1, and I could reproduce the issue in 1.12.3.
Describe the bug
When there is a v-form inside a v-form, some issues are in the built project (prod env).
The issue is not occurring on development, and there are no logs of any kind to inform the developer.
To Reproduce
<template>
<v-formv-model="f1">
<v-row>
<v-col>
<!-- TypeError: n.setAttribute is not a function DOMException: Node.appendChild: Cannot add children to a Text-->
<v-formv-model="f2">
<v-btnclass="green">f2: {{ f2 }}</v-btn>
</v-form>
<!-- TypeError: t is undefined DOMException: Node.appendChild: Cannot add children to a Text--><!-- <v-form v-model="f3"> <v-text-field :label="'f3:' + f3"></v-text-field> </v-form> -->
</v-col>
</v-row>
</v-form>
</template>
<script>exportdefault {data() {return { f1:false, f2:false, f3:false, m:null, } }}</script>
Steps to reproduce the behavior:
Create a new nuxt/vuetify project
Add the above snippet into index page
npm run build
npm run start
You can see the issue in the browser
The other section provides a different error/issue that might be related.
Expected behavior
It should be either fixed or at least a warning/error should be visible to the user in development mode, and better readable error logs in prod.
Additional context
I first encountered the issue in an update to a deployed project with 1000+ users, due to lack of readable logs I spent almost 3 hours to find out why and where this occurred.
It was a stressful Comment-out tag -> build (locally) -> start -> check -> rinse and repeat cycle until I cornered that there are some weirdness is happening when a v-form is nested inside a v-form.
The text was updated successfully, but these errors were encountered:
Module version
1.12.3
I first saw it in 1.12.1, and I could reproduce the issue in 1.12.3.
Describe the bug
When there is a v-form inside a v-form, some issues are in the built project (prod env).
The issue is not occurring on development, and there are no logs of any kind to inform the developer.
To Reproduce
Steps to reproduce the behavior:
npm run build
npm run start
The other section provides a different error/issue that might be related.
Expected behavior
It should be either fixed or at least a warning/error should be visible to the user in development mode, and better readable error logs in prod.
Additional context
I first encountered the issue in an update to a deployed project with 1000+ users, due to lack of readable logs I spent almost 3 hours to find out why and where this occurred.
It was a stressful
Comment-out tag -> build (locally) -> start -> check -> rinse and repeat
cycle until I cornered that there are some weirdness is happening when av-form
is nested inside av-form
.The text was updated successfully, but these errors were encountered: