aboutsummaryrefslogtreecommitdiff
path: root/src/components/BaseLine.vue
diff options
context:
space:
mode:
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);