table.c-calendar__day-table
thead
tr
th(
v-for="item in weeks"
) {{item}}
tbody
tr(
v-for="row,rowIndex in dayRows"
)
td(v-for="item,itemIndex in row"
:class="getCellCls(item)"
@click="selectDay(item)"
@mouseenter="onMouseEnter($event)"
)
a.day-cell(
:data-rowindex="rowIndex"
:data-index="itemIndex"
) {{item.day}}