[v1] @quasar/app 1.0.0-beta.25 released!
-
App Extension API additions to allow out of the box support for AE persistent config.
/** * Get the internal persistent config of this extension. * Returns empty object if it has none. * * @return {object} cfg */ getPersistentConf () { return extensionJson.getInternal(this.extId) } /** * Set the internal persistent config of this extension. * If it already exists, it is overwritten. * * @param {object} cfg */ setPersistentConf (cfg) { extensionJson.setInternal(this.extId, cfg || {}) } /** * Deep merge into the internal persistent config of this extension. * If extension does not have any config already set, this is * essentially equivalent to setting it for the first time. * * @param {object} cfg */ mergePersistentConf (cfg = {}) { const currentCfg = this.getPersistentConf() this.setPersistentConf(merge(currentCfg, cfg)) }
-
What is “internal persistent config”?
-
I guess its something like a database for your AE?
-
Lucas is right.
-
@lucasfernog
What’s AE? After Effects? -
@mesqueeb That was my first thought
It took a while before I realised it meant App Extensions
-
ooooooh haha now I get it!!