From ac1eddca4058f81feb0bd5df621c929af09fb7d5 Mon Sep 17 00:00:00 2001 From: Kaoru Hagihara Date: Sun, 6 Mar 2016 01:22:22 +0900 Subject: [PATCH] fix --- vue/vue.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vue/vue.d.ts b/vue/vue.d.ts index f0af82ea1..db55c2a75 100644 --- a/vue/vue.d.ts +++ b/vue/vue.d.ts @@ -118,7 +118,7 @@ declare namespace vuejs { // instance/api/dom.js $nextTick(callback: Function): void; $appendTo(target: (HTMLElement | string), callback?: Function, withTransition?: boolean): this; - $prependTo(target: (HTMLElement | string), callback?: Function, withTransition?: boolean); this; + $prependTo(target: (HTMLElement | string), callback?: Function, withTransition?: boolean): this; $before(target: (HTMLElement | string), callback?: Function, withTransition?: boolean): this; $after(target: (HTMLElement | string), callback?: Function, withTransition?: boolean): this; $remove(callback?: Function): this;