From 0d756d3f426198595d3aa4dc77bb0ef9e1aad657 Mon Sep 17 00:00:00 2001 From: Alexey Velikiy Date: Mon, 3 Jan 2022 20:12:02 +0300 Subject: [PATCH] use v-model instead of :value --- client/src/views/Home.vue | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/client/src/views/Home.vue b/client/src/views/Home.vue index e73cebd..daaf514 100644 --- a/client/src/views/Home.vue +++ b/client/src/views/Home.vue @@ -16,7 +16,7 @@
Threshold: -

+

Hold
S
to label patterns; @@ -25,13 +25,13 @@

Correlation score: -
+
Anti correlation score: -
+
Model score: -
+
Threshold score: -

+

@@ -40,11 +40,11 @@ Confidence: -
+
Seasonality: -
+
Seasonality iterations: -
+

@@ -86,6 +86,7 @@ export default defineComponent({ // Pattern correlationScoreChange(e) { + console.log('change correlationScoreChange'); let cfg = _.clone(this.analyticUnitConfig); cfg.correlation_score = parseFloat(e.target.value); this.$store.dispatch('patchConfig', { Pattern: cfg });