mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-26 00:26:20 +08:00

* fix(ApiSelect demo): add demo about ApiSelect's use * fix(ApiSelect demo): typo * revert(ApiSelect): remove console Co-authored-by: M69W <M69W@M69W>
16 lines
316 B
TypeScript
16 lines
316 B
TypeScript
import { BasicFetchResult } from '/@/api/model/baseModel';
|
|
|
|
export interface DemoOptionsItem {
|
|
label: string;
|
|
value: string;
|
|
}
|
|
|
|
export interface selectParams {
|
|
id: number | string;
|
|
}
|
|
|
|
/**
|
|
* @description: Request list return value
|
|
*/
|
|
export type DemoOptionsGetResultModel = BasicFetchResult<DemoOptionsItem>;
|