From f80f015c0e9aeff6560f7177fa85fc7a04cd0ebf Mon Sep 17 00:00:00 2001 From: Erastus Amunwe Date: Mon, 2 Nov 2020 10:09:20 +0200 Subject: [PATCH] changed default initialisation from functions --- src/store/state.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/store/state.js diff --git a/src/store/state.js b/src/store/state.js new file mode 100644 index 0000000..19a8897 --- /dev/null +++ b/src/store/state.js @@ -0,0 +1,12 @@ +export default { + saved_translations: [], + // test: (()=>(['Hello', 'Wold']))() + // , + selected:{ + translation: null, + book: null, + chapter: null + }, + in_memory_translation:{}, + search: '', + } \ No newline at end of file