can vuejs support "Fragments" tag, just like react
<template>
<Fragment v-for="item in lst" key={item.id}>
<dt>{item.term}</dt>
<dd>{item.description}</dd>
<Fragment >
<template>
For the time being, I think the suggested solution is to use a render function which can result in an array of items:
render(h) {
return this.lst.map(item => h('dt', {props}))
}
@ejweiler but this is only supported in functional component
@sqal if you _need_ to output multiple elements at the root level of a component it might be the only current option, so why not use a functional component for it?
Duplicated of #7088