Files
freeplanet/src/globalroutines/index.js
Paolo Arena 13a4a0ba90 - fix: updated from Store to Component: using Watch with 'immediate' parameters! @Watch('todos_changed', { immediate: true, deep: true })
- fix immediate only if you need to change something very quickly... otherwise it not need.
- fix: modified become FALSE when is sent, otherwise infinite loop...
2019-02-03 19:28:06 +01:00

8 lines
262 B
JavaScript

import indexdb from './indexdb'
export default async (context, cmd, table, data = null, id = '') => {
const descr = data !== null ? data.descr : ''
console.log('globalroutines', cmd, table, descr, id)
return await indexdb(context, cmd, table, data, id)
}