mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-11 19:32:26 +08:00
init
This commit is contained in:
26
node_modules/vue/src/core/index.js
generated
vendored
Normal file
26
node_modules/vue/src/core/index.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import Vue from './instance/index'
|
||||
import { initGlobalAPI } from './global-api/index'
|
||||
import { isServerRendering } from 'core/util/env'
|
||||
import { FunctionalRenderContext } from 'core/vdom/create-functional-component'
|
||||
|
||||
initGlobalAPI(Vue)
|
||||
|
||||
Object.defineProperty(Vue.prototype, '$isServer', {
|
||||
get: isServerRendering
|
||||
})
|
||||
|
||||
Object.defineProperty(Vue.prototype, '$ssrContext', {
|
||||
get () {
|
||||
/* istanbul ignore next */
|
||||
return this.$vnode && this.$vnode.ssrContext
|
||||
}
|
||||
})
|
||||
|
||||
// expose FunctionalRenderContext for ssr runtime helper installation
|
||||
Object.defineProperty(Vue, 'FunctionalRenderContext', {
|
||||
value: FunctionalRenderContext
|
||||
})
|
||||
|
||||
Vue.version = '__VERSION__'
|
||||
|
||||
export default Vue
|
||||
Reference in New Issue
Block a user