kui-vue
Version:
A lightweight desktop UI component library suitable for Vue.js 2.
22 lines (17 loc) • 432 B
TypeScript
import Vue, { VueConstructor } from "vue";
/** Row component props */
export interface RowProps {
gutter?: number | any[];
/** default: flex */
type?: string;
justify?: string;
align?: string;
}
/** Row component instance */
export interface Row extends Vue {
$props: RowProps;
$emit(event: string, ...args: any[]): void;
}
/** Row Vue component type */
declare const Row: VueConstructor<Row>;
export default Row;