UNPKG

@relaxed/vue-directives

Version:

vue 兼容2 3 工具库 函数库

12 lines (8 loc) 214 B
import { App } from 'vue' interface Vue2 { default: { version: string } } const isVue3 = (app: Vue2 | App): app is App => 'config' in app && 'globalProperties' in app.config export { isVue3 }