import { version as vs } from '../../package.json'; import { App, InjectionKey } from 'vue'; export const VERSION: InjectionKey = Symbol('version'); export const version = { install: (app: App) => { app.provide(VERSION, vs); }, };