UNPKG

kui-vue

Version:

A lightweight desktop UI component library suitable for Vue.js 2.

20 lines (15 loc) 389 B
import Vue, { VueConstructor } from "vue"; /** Col component props */ export interface ColProps { span?: number; offset?: number; flex?: string | number; } /** Col component instance */ export interface Col extends Vue { $props: ColProps; $emit(event: string, ...args: any[]): void; } /** Col Vue component type */ declare const Col: VueConstructor<Col>; export default Col;