firecomponent
Advanced tools
Comparing version 1.2.10 to 1.2.11
{ | ||
"name": "firecomponent", | ||
"description": "Declarative components that bind data to firebase", | ||
"version": "1.2.10", | ||
"version": "1.2.11", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "dmattia", |
@@ -50,12 +50,12 @@ import FireHtml from './components/FireHtml.vue' | ||
// Auto-install | ||
let GlobalVue = null | ||
let GlobalVue = null; | ||
if (typeof window !== 'undefined') { | ||
GlobalVue = window.Vue | ||
GlobalVue = window.Vue; | ||
} else if (typeof global !== 'undefined') { | ||
GlobalVue = global.Vue | ||
GlobalVue = global.Vue; | ||
} | ||
if (GlobalVue) { | ||
GlobalVue.initializeApp = (config) => { | ||
Vue.use(plugin, config) | ||
GlobalVue.initializeApp = function (config) { | ||
Vue.use(plugin, config); | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36271