framework7-vue
Version:
Build full featured iOS & Android apps using Framework7 & Vue
63 lines (46 loc) • 889 B
TypeScript
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
declare const Tabs: DefineComponent<
{
animated: {
type: BooleanConstructor;
},
swipeable: {
type: BooleanConstructor;
},
routable: {
type: BooleanConstructor;
},
swiperParams: {
type: ObjectConstructor;
default: undefined;
},
color: {
type: StringConstructor;
},
colorTheme: {
type: StringConstructor;
},
textColor: {
type: StringConstructor;
},
bgColor: {
type: StringConstructor;
},
borderColor: {
type: StringConstructor;
},
rippleColor: {
type: StringConstructor;
},
dark: {
type: BooleanConstructor;
}
},
() => JSX.Element,
unknown,
{},
{},
ComponentOptionsMixin,
ComponentOptionsMixin,
>;
export default Tabs;