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
Add <template v-if="..."> element in table row and check in IE.
What is Expected?
No fragment instance and correct behaviour.
What is actually happening?
In Internet Explorer 11 when <template v-if="..."> element is present inside template's table row then vue gives a warning about fragment instance and template v-if doesn't work as expected. In latest Chrome and Firefox this works fine. At the same time <template v-if="..."> works fine if placed inside other tag, example: https://jsfiddle.net/pgunya/sa7vtgtt/
The text was updated successfully, but these errors were encountered:
pgunya
changed the title
Issue in IE 11: template v-if leads to fragment instance
Issue in IE 11: template v-if in table row leads to fragment instance
Feb 26, 2016
Yes, now I see.
But then I have a silly question: template is located inside a <script> tag, I thought that it content should not be parsed by browser until vue compile it and insert into target element. Am I wrong? Thanks!
Vue.js version
1.0.16
Reproduction Link
https://jsfiddle.net/pgunya/v8ndoocg/
Steps to reproduce
Add
<template v-if="...">
element in table row and check in IE.What is Expected?
No fragment instance and correct behaviour.
What is actually happening?
In Internet Explorer 11 when
<template v-if="...">
element is present inside template's table row then vue gives a warning about fragment instance and template v-if doesn't work as expected. In latest Chrome and Firefox this works fine. At the same time<template v-if="...">
works fine if placed inside other tag, example: https://jsfiddle.net/pgunya/sa7vtgtt/The text was updated successfully, but these errors were encountered: