小程序初始提交
This commit is contained in:
25
cool-unix/uni_modules/cool-ui/components/cl-banner/props.ts
Normal file
25
cool-unix/uni_modules/cool-ui/components/cl-banner/props.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { PassThroughProps } from "../../types";
|
||||
|
||||
export type ClBannerPassThrough = {
|
||||
className?: string;
|
||||
item?: PassThroughProps;
|
||||
itemActive?: PassThroughProps;
|
||||
image?: PassThroughProps;
|
||||
dots?: PassThroughProps;
|
||||
dot?: PassThroughProps;
|
||||
dotActive?: PassThroughProps;
|
||||
};
|
||||
|
||||
export type ClBannerProps = {
|
||||
className?: string;
|
||||
pt?: ClBannerPassThrough;
|
||||
list?: string[];
|
||||
previousMargin?: number;
|
||||
nextMargin?: number;
|
||||
autoplay?: boolean;
|
||||
interval?: number;
|
||||
showDots?: boolean;
|
||||
disableTouch?: boolean;
|
||||
height?: any;
|
||||
imageMode?: string;
|
||||
};
|
||||
Reference in New Issue
Block a user