I am using vue.js, but IE11 is having trouble using template tags in the table tag.
<tr>
<td>hoge</td>
<template v-for = "item in items" >
<td>{{item.fuga}}</td>
<td>{{item.piyo}}</td>
</template>
</tr>
Is there an alternative way for IE to do this?
javascript vue.js internet-explorer
I haven't tried it yet, but how about this?
<tr>
<td>hoge</td>
<td v-for="vin items.reduce(function(a,c){return a.concat([c.fuga,c.piyo])}",[])">
{{ v}}
</td>
</tr>
It's hard to understand, so I think it's better to choose compute.
© 2024 OneMinuteCode. All rights reserved.