zmp-vue
Version:
Build full featured iOS & Android apps using ZMP & Vue
27 lines (24 loc) • 542 B
TypeScript
import { ComponentOptionsMixin, DefineComponent } from 'vue';
import { SwiperOptions } from 'swiper';
declare const Tabs: DefineComponent<
{
animated?: boolean;
swipeable?: boolean;
routable?: boolean;
swiperParams?: SwiperOptions;
color?: string;
colorTheme?: string;
textColor?: string;
bgColor?: string;
borderColor?: string;
rippleColor?: string;
themeDark?: boolean;
},
() => JSX.Element,
unknown,
{},
{},
ComponentOptionsMixin,
ComponentOptionsMixin
>;
export default Tabs;