Presently, I have a v-for directive that renders a dozen divs from an array. This array holds organic results from an open source search engine api. All of these organic results have the same look, hence the iteration. On the other hand, I have one div that holds a news result. Right now, the only way to include that result is after the organic results have been rendered and at the end of the list. Is there a way to put this news result at any position in between the organic results without having to split up the organic result array?
Please let me know if this is possible within the framework's capabilities.
current situation
<!--org result-->
<!--org result-->
<!--org result-->
<!--org result-->
<!--org result-->
<!--org result-->
<!--org result-->
<!--...-->
<!--news result-->
what I need
<!--org result-->
<!--org result-->
<!--news result-->
<!--org result-->
<!--org result-->
<!--org result-->
<!--org result-->
<!--org result-->
<!--...-->