From ef40d1b7cfb0201ba0a77dd12663f411e341d553 Mon Sep 17 00:00:00 2001 From: yantene Date: Sun, 5 Feb 2017 05:30:53 +0900 Subject: [PATCH] add the type of props in typescript definitions --- types/vue.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/vue.d.ts b/types/vue.d.ts index 823828a6d..3723485e7 100644 --- a/types/vue.d.ts +++ b/types/vue.d.ts @@ -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;