From 5362f69884029727bdabfb993b1d2f9d7135f26d Mon Sep 17 00:00:00 2001 From: Anthony Catel Date: Mon, 28 Mar 2022 11:36:26 +0200 Subject: [PATCH] Fix slider animation --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index a2bd3e1..021d891 100644 --- a/src/App.vue +++ b/src/App.vue @@ -87,7 +87,7 @@ const densityUpdate = (val: number) => { const setDensity = (val: number) => { tatween(800, Easing.Exponential.Out, (obj) => { - density.value = val; + obj.value = val; }, density) }