From 056cac91855e644e94cd704ff5462c4e1acba66b Mon Sep 17 00:00:00 2001 From: Evan You Date: Fri, 26 Jun 2020 09:03:55 -0400 Subject: [PATCH] feat(runtime-core): expose version on app instance close #1449 --- packages/runtime-core/src/apiCreateApp.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/runtime-core/src/apiCreateApp.ts b/packages/runtime-core/src/apiCreateApp.ts index 8c0db041..8fb61324 100644 --- a/packages/runtime-core/src/apiCreateApp.ts +++ b/packages/runtime-core/src/apiCreateApp.ts @@ -13,8 +13,10 @@ import { isFunction, NO, isObject } from '@vue/shared' import { warn } from './warning' import { createVNode, cloneVNode, VNode } from './vnode' import { RootHydrateFunction } from './hydration' +import { version } from '.' export interface App { + version: string config: AppConfig use(plugin: Plugin, ...options: any[]): this mixin(mixin: ComponentOptions): this @@ -126,6 +128,8 @@ export function createAppAPI( _container: null, _context: context, + version, + get config() { return context.config },