-
-
Notifications
You must be signed in to change notification settings - Fork 33.8k
Closed
Labels
Description
Hello Everyone,
I'm injecting some html that contains a form using the v-html directive.
<div v-html="event.view">
</div>
Since chrome automatically updated itself to version 56 I can no longer submit the form that's injected there. In the developer console the error I'm getting is:
Form submission canceled because the form is not connected
Reading through stack overflow what I came up with is this post that highlight a change in chrome's behavior. http://stackoverflow.com/questions/42053775/getting-error-form-submission-canceled-because-the-form-is-not-connected
The solution seems to be appending the form to the html. but shouldn't Vue already do this for me?
I'm stuck on this issue.