@vue/devtools
Version:
StandAlone vue-devtools
35 lines (29 loc) • 816 B
JavaScript
const isBrowser = typeof window !== 'undefined'
if (isBrowser) {
require('./build/hook.js')
} else {
require('./build-node/hook.js')
}
const target = isBrowser
? window
: typeof global !== 'undefined'
? global
: {}
module.exports = {
connect: function (host, port, { io, showToast, app } = {}) {
target.__VUE_DEVTOOLS_HOST__ = host
target.__VUE_DEVTOOLS_PORT__ = port
if (io) target.__VUE_DEVTOOLS_SOCKET__ = io
if (showToast) target.__VUE_DEVTOOLS_TOAST__ = showToast
if (app) target.__VUE_ROOT_INSTANCES__ = Array.isArray(app) ? app : [app]
if (isBrowser) {
require('./build/backend.js')
} else {
require('./build-node/backend.js')
}
},
init: (Vue) => {
const tools = target.__VUE_DEVTOOLS_GLOBAL_HOOK__
tools.emit('init', Vue)
},
}