add the type of props in typescript definitions

This commit is contained in:
yantene 2017-02-05 05:30:53 +09:00 committed by Evan You
parent 22f9560c92
commit ef40d1b7cf

1
types/vue.d.ts vendored
View File

@ -42,6 +42,7 @@ export declare class Vue {
readonly $slots: { [key: string]: VNode[] };
readonly $scopedSlots: { [key: string]: ScopedSlot };
readonly $isServer: boolean;
$props: Object;
$mount(elementOrSelector?: Element | String, hydrating?: boolean): this;
$forceUpdate(): void;