Rework data loading, get first dashboard roughly in order.

This commit is contained in:
Joshua Bemenderfer
2021-12-30 13:25:31 -05:00
parent b8cca082ed
commit 38976cf29d
180 changed files with 632 additions and 263 deletions

8
src/data/cache.js Normal file
View File

@@ -0,0 +1,8 @@
import { reactive, ref, watch } from 'vue'
const cache = {
parameters: ref(null),
data: ref(null)
}
export default cache