我正在使用v-for,然后显示组件。渲染良好,但缺少内部元素。我听不懂您可以看到两列为空,但是在控制台中,三列显示了5个组件,但仅显示了3个组件。告诉可能是什么问题。任何帮助将不胜感激
<div v-for="(counterDate, index) in fulldate_array" >
<template v-if="shift[officer.oid]">
<shiftlayout v-for="(data,shiftKey) in shift[officer.oid][fulldate_array[index]]" :shift_data="data" :shiftKey="shiftKey" :date="singledate_array[index]" :fulldate="fulldate_array[index]" :width="shiftWidth"/>
</template>
</div>