@optimuscms/editor
Advanced tools
Comparing version 2.2.2 to 2.2.3
{ | ||
"name": "@optimuscms/editor", | ||
"version": "2.2.2", | ||
"version": "2.2.3", | ||
"author": "Rich Moore", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -19,2 +19,20 @@ import config from './config'; | ||
created() { | ||
if (config.hasOwnProperty('onCreated')) { | ||
config.onCreated(); | ||
} | ||
}, | ||
mounted() { | ||
if (config.hasOwnProperty('onMounted')) { | ||
config.onMounted(); | ||
} | ||
}, | ||
beforeDestroy() { | ||
if (config.hasOwnProperty('onBeforeDestroy')) { | ||
config.onBeforeDestroy(); | ||
} | ||
}, | ||
computed: { | ||
@@ -21,0 +39,0 @@ init() { |
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
10570
148