js 日期遍历 小算法
给一个完整月份日期 list ,怎样遍历出来 类似一个月 日历呢?勉强写了一个 基于vue
<table>
<tbody>
<template v-for="n in 5">
<tr>
<template v-for="w in 7">
<template v-if="(w-1)+(n-1)*7 < list.length">
<td>{{ list[(w-1)+(n-1)*7].fullDate }}</td>
</template>
</template>
</tr>
</template>
</tbody>
</table>
效果