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.
77 lines
2.1 KiB
77 lines
2.1 KiB
|
3 years ago
|
/* @flow */
|
||
|
|
|
||
|
|
import Vue from 'core/index'
|
||
|
|
import config from 'core/config'
|
||
|
|
import { extend, noop } from 'shared/util'
|
||
|
|
import { mountComponent } from 'core/instance/lifecycle'
|
||
|
|
import { devtools, inBrowser } from 'core/util/index'
|
||
|
|
|
||
|
|
import {
|
||
|
|
query,
|
||
|
|
mustUseProp,
|
||
|
|
isReservedTag,
|
||
|
|
isReservedAttr,
|
||
|
|
getTagNamespace,
|
||
|
|
isUnknownElement
|
||
|
|
} from 'web/util/index'
|
||
|
|
|
||
|
|
import { patch } from './patch'
|
||
|
|
import platformDirectives from './directives/index'
|
||
|
|
import platformComponents from './components/index'
|
||
|
|
|
||
|
|
// install platform specific utils
|
||
|
|
Vue.config.mustUseProp = mustUseProp
|
||
|
|
Vue.config.isReservedTag = isReservedTag
|
||
|
|
Vue.config.isReservedAttr = isReservedAttr
|
||
|
|
Vue.config.getTagNamespace = getTagNamespace
|
||
|
|
Vue.config.isUnknownElement = isUnknownElement
|
||
|
|
|
||
|
|
// install platform runtime directives & components
|
||
|
|
extend(Vue.options.directives, platformDirectives)
|
||
|
|
extend(Vue.options.components, platformComponents)
|
||
|
|
|
||
|
|
// install platform patch function
|
||
|
|
Vue.prototype.__patch__ = inBrowser ? patch : noop
|
||
|
|
|
||
|
|
// public mount method
|
||
|
|
Vue.prototype.$mount = function (
|
||
|
|
el?: string | Element,
|
||
|
|
hydrating?: boolean
|
||
|
|
): Component {
|
||
|
|
el = el && inBrowser ? query(el) : undefined
|
||
|
|
return mountComponent(this, el, hydrating)
|
||
|
|
}
|
||
|
|
|
||
|
|
// devtools global hook
|
||
|
|
/* istanbul ignore next */
|
||
|
|
if (inBrowser) {
|
||
|
|
setTimeout(() => {
|
||
|
|
if (config.devtools) {
|
||
|
|
if (devtools) {
|
||
|
|
devtools.emit('init', Vue)
|
||
|
|
} else if (
|
||
|
|
process.env.NODE_ENV !== 'production' &&
|
||
|
|
process.env.NODE_ENV !== 'test'
|
||
|
|
) {
|
||
|
|
console[console.info ? 'info' : 'log'](
|
||
|
|
'Download the Vue Devtools extension for a better development experience:\n' +
|
||
|
|
'https://github.com/vuejs/vue-devtools'
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if (process.env.NODE_ENV !== 'production' &&
|
||
|
|
process.env.NODE_ENV !== 'test' &&
|
||
|
|
config.productionTip !== false &&
|
||
|
|
typeof console !== 'undefined'
|
||
|
|
) {
|
||
|
|
console[console.info ? 'info' : 'log'](
|
||
|
|
`You are running Vue in development mode.\n` +
|
||
|
|
`Make sure to turn on production mode when deploying for production.\n` +
|
||
|
|
`See more tips at https://vuejs.org/guide/deployment.html`
|
||
|
|
)
|
||
|
|
}
|
||
|
|
}, 0)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Vue
|