From df78910e935abe22a1c3a37761ea6db7434c21bd Mon Sep 17 00:00:00 2001 From: yaoyao Date: Sun, 4 Oct 2015 09:11:02 +0800 Subject: [PATCH] use `any` rather than `{}` for element $data and $options --- vue/vue.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vue/vue.d.ts b/vue/vue.d.ts index 109f81762..cb707348a 100644 --- a/vue/vue.d.ts +++ b/vue/vue.d.ts @@ -65,8 +65,8 @@ declare module vuejs { * http://vuejs.org/api/instance-properties.html */ $el: HTMLElement; - $data: {}; - $options: {}; + $data: any; + $options: any; $parent: Vue; $root: Vue; $: {};