aboutsummaryrefslogtreecommitdiff
path: root/src/components/BaseLine.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/BaseLine.vue
parentbf357e48dc261dab08598bd93071ca53ef386402 (diff)
Move general utility funcs into util.ts
Diffstat (limited to 'src/components/BaseLine.vue')
-rw-r--r--src/components/BaseLine.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/BaseLine.vue b/src/components/BaseLine.vue
index 3cca6d7..91f5b69 100644
--- a/src/components/BaseLine.vue
+++ b/src/components/BaseLine.vue
@@ -16,7 +16,8 @@
<script setup lang="ts">
import {ref, computed, onMounted, PropType, Ref} from 'vue';
-import {MIN_DATE, MAX_DATE, SCALES, MONTH_SCALE, DAY_SCALE, WRITING_MODE_HORZ, TimelineState, stepDate} from '../lib';
+import {WRITING_MODE_HORZ} from '../util';
+import {MIN_DATE, MAX_DATE, SCALES, MONTH_SCALE, DAY_SCALE, stepDate, TimelineState} from '../lib';
import {useStore} from '../store';
const rootRef = ref(null as HTMLElement | null);