You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
import Vue from 'vue'
|
|
import VueCompositionAPI from '@vue/composition-api'
|
|
|
|
function install(_vue) {
|
|
_vue = _vue || Vue
|
|
if (_vue && !_vue['__composition_api_installed__'])
|
|
Vue.use(VueCompositionAPI)
|
|
}
|
|
|
|
install(Vue)
|
|
|
|
var isVue2 = true
|
|
var isVue3 = false
|
|
var Vue2 = Vue
|
|
var version = Vue.version
|
|
|
|
/**VCA-EXPORTS**/
|
|
export { EffectScope, computed, createApp, createRef, customRef, defineAsyncComponent, defineComponent, del, effectScope, getCurrentInstance, getCurrentScope, h, inject, isRaw, isReactive, isReadonly, isRef, markRaw, nextTick, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, provide, proxyRefs, reactive, readonly, ref, set, shallowReactive, shallowReadonly, shallowRef, toRaw, toRef, toRefs, triggerRef, unref, useAttrs, useCSSModule, useCssModule, useSlots, warn, watch, watchEffect, watchPostEffect, watchSyncEffect } from '@vue/composition-api'
|
|
/**VCA-EXPORTS**/
|
|
|
|
export {
|
|
Vue,
|
|
Vue2,
|
|
isVue2,
|
|
isVue3,
|
|
version,
|
|
install,
|
|
}
|