publink-open-vue-devtools

publink开启vue开发工具

当前为 2021-06-25 提交的版本,查看 最新版本

// ==UserScript==
// @name         publink-open-vue-devtools
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  publink开启vue开发工具
// @author       HuangBaoCheng
// @include      *://*
// @icon         https://www.google.com/s2/favicons?domain=tampermonkey.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    const all = document.querySelectorAll('*');
    let el
    for (let i = 0; i < all.length; i++) {
        if (all[i].__vue__) {
            el = all[i]
            break
        }
    }
    if (el) {
        console.log('use vue', el);
        var Vue = Object.getPrototypeOf(el.__vue__).constructor
        while (Vue.super) {
            Vue = Vue.super
        }
        Vue.config.devtools = true;
        window.__VUE_DEVTOOLS_GLOBAL_HOOK__.Vue = Vue;
        console.log(Vue.version);
    }
    else {
        console.log('not use vue');
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址