table.c-calendar__month-table
tbody
tr(v-for="monthRow in monthRows")
td(
v-for="item in monthRow"
@click="selectMonth(item)"
)
a.month-cell(
:class="{'disabled': !isSelectedMonth(item), 'active':isSelectedMonth(item) && item === month}"
) {{mapMonth(item)}}