aboutsummaryrefslogtreecommitdiff
path: root/src/components/SearchModal.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2023-01-21 14:08:48 +1100
committerTerry Truong <terry06890@gmail.com>2023-01-21 14:12:30 +1100
commitd581e5b61a771ef8619a5bfbc84a6e337c7ca13f (patch)
treee372aab2a7ab95d6fd22dcfe99f3f1985456ecc7 /src/components/SearchModal.vue
parentbf357e48dc261dab08598bd93071ca53ef386402 (diff)
Move general utility funcs into util.ts
Diffstat (limited to 'src/components/SearchModal.vue')
-rw-r--r--src/components/SearchModal.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/SearchModal.vue b/src/components/SearchModal.vue
index 543c7f3..ec1b4cd 100644
--- a/src/components/SearchModal.vue
+++ b/src/components/SearchModal.vue
@@ -36,7 +36,8 @@
import {ref, computed, onMounted, PropType} from 'vue';
import SearchIcon from './icon/SearchIcon.vue';
import InfoIcon from './icon/InfoIcon.vue';
-import {HistEvent, queryServer, EventInfoJson, jsonToEventInfo, SuggResponseJson, animateWithClass} from '../lib';
+import {animateWithClass} from '../util';
+import {HistEvent, queryServer, EventInfoJson, jsonToEventInfo, SuggResponseJson} from '../lib';
import {useStore} from '../store';
import {RBTree} from '../rbtree';