Files
ga-covid.thederf.com/src/data/cache.js
2021-12-30 13:25:31 -05:00

9 lines
127 B
JavaScript

import { reactive, ref, watch } from 'vue'
const cache = {
parameters: ref(null),
data: ref(null)
}
export default cache