c-uview-plus
Version:
零云®uview-plus已兼容vue3,全面的组件和便捷的工具会让您信手拈来,如鱼得水
19 lines (15 loc) • 353 B
TypeScript
import { AllowedComponentProps, VNodeProps } from './_common'
declare interface ListItemProps {
/**
* 用于滚动到指定item
*/
anchor?: string | number
}
declare interface _ListItem {
new (): {
$props: AllowedComponentProps &
VNodeProps &
ListItemProps
}
}
export declare const ListItem: _ListItem