From: 瓦姆乌·湫曗 Date: Fri, 19 Jun 2020 09:19:14 +0000 (+0800) Subject: chore: ComponentOptions -> Component in shim (#315) X-Git-Tag: v4.0.0-alpha.14~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dac7210180184447ea51a54c284d4ff419fae1c2;p=thirdparty%2Fvuejs%2Frouter.git chore: ComponentOptions -> Component in shim (#315) --- diff --git a/playground/shim.d.ts b/playground/shim.d.ts index 01cae855..996ea4df 100644 --- a/playground/shim.d.ts +++ b/playground/shim.d.ts @@ -1,5 +1,5 @@ declare module '*.vue' { - import { ComponentOptions } from 'vue' - var component: ComponentOptions + import { Component } from 'vue' + var component: Component export default component }