adjust: improve regency select based on new useRegencies composable to explicit pull all data with no limitation, because it has a province code

This commit is contained in:
Khafid Prayoga
2025-10-09 13:46:40 +07:00
parent e0867cb59f
commit 5121422658
12 changed files with 485 additions and 131 deletions
+14
View File
@@ -0,0 +1,14 @@
import { type Base, genBase } from './_base'
export interface PostalCode extends Base {
code: string
village_code: string
}
export function genPostalCode(): PostalCode {
return {
...genBase(),
code: '',
village_code: '',
}
}