31 lines
851 B
JavaScript
31 lines
851 B
JavaScript
// node_modules/@vue/devtools-api/lib/esm/env.js
|
|
function getDevtoolsGlobalHook() {
|
|
return getTarget().__VUE_DEVTOOLS_GLOBAL_HOOK__;
|
|
}
|
|
function getTarget() {
|
|
return typeof navigator !== "undefined" ? window : typeof global !== "undefined" ? global : {};
|
|
}
|
|
|
|
// node_modules/@vue/devtools-api/lib/esm/const.js
|
|
var HOOK_SETUP = "devtools-plugin:setup";
|
|
|
|
// node_modules/@vue/devtools-api/lib/esm/index.js
|
|
function setupDevtoolsPlugin(pluginDescriptor, setupFn) {
|
|
const hook = getDevtoolsGlobalHook();
|
|
if (hook) {
|
|
hook.emit(HOOK_SETUP, pluginDescriptor, setupFn);
|
|
} else {
|
|
const target = getTarget();
|
|
const list = target.__VUE_DEVTOOLS_PLUGINS__ = target.__VUE_DEVTOOLS_PLUGINS__ || [];
|
|
list.push({
|
|
pluginDescriptor,
|
|
setupFn
|
|
});
|
|
}
|
|
}
|
|
|
|
export {
|
|
setupDevtoolsPlugin
|
|
};
|
|
//# sourceMappingURL=chunk-CZUN4J5D.js.map
|