mirror of
https://github.com/xsf0105/vue3-h5-template.git
synced 2025-04-05 04:22:47 +08:00
7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
/** 所有 api 接口的响应数据都应该准守该格式 */
|
|
interface ApiResponseData<T> {
|
|
code: number
|
|
data: T
|
|
message: string
|
|
}
|