I'm in a situation where I need to run v-for without a wrapping element.
Let's have an example. I have two array namely subjects and terms. If I wish to iterate terms subjects.length times, I need to do something like this
<body>
<div v-for="s in subjects">
<p v-for="t in terms">{{t}}<p>
<div>
<body>
Which will generate subjects.length number of divs and subjects.length * terms.length number of ps. But for my actual application I need just subjects.length * terms.length number of p and no wrapping div.