mine-h5-ui
Version:
一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍
35 lines (34 loc) • 459 B
TypeScript
/**
* cities item
*/
export interface CityItem {
code: string;
en: string;
cn: string;
}
/**
* props list
*/
export interface ListItem {
name: string;
cities: CityItem[];
}
/**
* emits
*/
export interface Emits {
(event: 'click', item: CityItem): void;
}
/**
* props
*/
export interface Props {
/**
* 自定义国家数据
*/
list?: ListItem[];
/**
* 显示范围数量
*/
range?: number;
}