[improvement] default props in tsx (#2789)

This commit is contained in:
neverland
2019-02-19 11:31:55 +08:00
committed by GitHub
parent b9d7143fb3
commit 07a6bcbe9f
11 changed files with 21 additions and 21 deletions

View File

@@ -8,9 +8,9 @@ import { CreateElement, RenderContext } from 'vue/types';
import { DefaultSlots } from '../utils/use/sfc';
export type ButtonProps = RouteProps & {
tag?: string;
type?: string;
size?: string;
tag: string;
type: string;
size: string;
text?: string;
block?: boolean;
plain?: boolean;