Skip to content

Instantly share code, notes, and snippets.

@mascii
Created January 19, 2020 05:01
Show Gist options
  • Save mascii/f3452ad00fc49406e19cc956159a1a69 to your computer and use it in GitHub Desktop.
Save mascii/f3452ad00fc49406e19cc956159a1a69 to your computer and use it in GitHub Desktop.
Vueコンストラクタ関数の取得(IE11対応版)
var Vue = (function () {
var el = [].filter.call(document.all, function (el) {return el.__vue__})[0];
if (!el) {
return;
}
var Vue = Object.getPrototypeOf(el.__vue__).constructor;
while (Vue.super) {
Vue = Vue.super;
}
return Vue;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment