diff options
Diffstat (limited to 'src/tools/math-evaluator/math-evaluator.vue')
-rw-r--r-- | src/tools/math-evaluator/math-evaluator.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/math-evaluator/math-evaluator.vue b/src/tools/math-evaluator/math-evaluator.vue index 0429e6e..25e5129 100644 --- a/src/tools/math-evaluator/math-evaluator.vue +++ b/src/tools/math-evaluator/math-evaluator.vue @@ -1,6 +1,6 @@ <script setup lang="ts"> import { evaluate } from 'mathjs'; -import { computed, ref } from 'vue'; + import { withDefaultOnError } from '@/utils/defaults'; const expression = ref(''); |