Files
web/app/components/datepicker/PickMonth.vue
2026-05-07 16:15:33 +07:00

12 lines
321 B
Vue

<template>
<div class="columns is-mobile is-multiline mx-0">
<span
v-for="month in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]"
:id="String(month)"
class="column has-text-centered is-4 is-clickable fs-14"
@click="$emit('month', month)"
>Tháng {{ month }}
</span>
</div>
</template>