Finally found a hot fix using the watch from_date. so whenever the date picker changes to the format '2024-01' I'll add '-01' to the end of it.
watch: {
from_date(val) {
if (val && val.length === 7) {
this.from_date = val + '-01'
}
}
}