diff --git a/src/App.vue b/src/App.vue
index 3e4437c..a6437fa 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -9,6 +9,8 @@
const currentWorkingCategory = ref(null)
const currentWorkingInstrument = ref(null)
+ const timerRunning = ref(false)
+ const micThresholdExceeded = ref(false)
const summaryRef = ref(null)
const statusRef = ref(null)
const showCategoryRef = ref(null)
@@ -34,13 +36,15 @@
-
+
+
diff --git a/src/components/timer.vue b/src/components/timer.vue
index d75344a..f4927a1 100644
--- a/src/components/timer.vue
+++ b/src/components/timer.vue
@@ -1,5 +1,7 @@