Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | // API が返してくる素の1件
export type AddressPurposeApiOption = {
id: number
code: string
label: string
text: string
value: number
}
// APIのレスポンス全体
export type AddressPurposeApiResponse = {
items: AddressPurposeApiOption[]
}
// v-select 用(value は id でよければこれでOK)
export type AddressPurposeOption = {
id: number
code: string
label: string
}
|