minor fix(navBar): title unrecognized
This commit is contained in:
parent
d7d7c94f53
commit
2082f5b60c
|
@ -21,7 +21,7 @@
|
||||||
<!-- <a class="flex items-center text-sm text-blue-600 font-bold" href="/">主页6</a>-->
|
<!-- <a class="flex items-center text-sm text-blue-600 font-bold" href="/">主页6</a>-->
|
||||||
|
|
||||||
<div class="flex pt-0.5 sm:pt-1 ml-4 text-xs items-center sm:hidden">
|
<div class="flex pt-0.5 sm:pt-1 ml-4 text-xs items-center sm:hidden">
|
||||||
<router-link :to="route.fullPath">{{ route.meta.title }}</router-link>
|
<router-link :to="route.fullPath">{{ $route.meta.title }}</router-link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,7 @@ import {VueDraggable} from "vue-draggable-plus";
|
||||||
import {onMounted, ref} from "vue";
|
import {onMounted, ref} from "vue";
|
||||||
import {globalNotify, globalNotifyRightSide} from "@/composables/notification";
|
import {globalNotify, globalNotifyRightSide} from "@/composables/notification";
|
||||||
import {useDataViewerStore} from "@/stores/dataViewerStore";
|
import {useDataViewerStore} from "@/stores/dataViewerStore";
|
||||||
import {translate} from "../../locales";
|
import {translate} from "@/locales";
|
||||||
|
|
||||||
const editMode = ref(false);
|
const editMode = ref(false);
|
||||||
const draggableEnabled = ref(true);
|
const draggableEnabled = ref(true);
|
||||||
|
|
|
@ -217,7 +217,7 @@ import InlineSvg from "@/components/InlineSvg.vue";
|
||||||
import TextDataConfig from "@/views/text-data-viewer/textDataConfig.vue";
|
import TextDataConfig from "@/views/text-data-viewer/textDataConfig.vue";
|
||||||
import {debouncedWatch} from "@vueuse/core";
|
import {debouncedWatch} from "@vueuse/core";
|
||||||
import {globalNotify} from "@/composables/notification";
|
import {globalNotify} from "@/composables/notification";
|
||||||
import {translate} from "../../locales";
|
import {translate} from "@/locales";
|
||||||
|
|
||||||
const count = ref(0);
|
const count = ref(0);
|
||||||
const vuetifyVirtualScrollBarRef = ref(document.body);
|
const vuetifyVirtualScrollBarRef = ref(document.body);
|
||||||
|
|
Loading…
Reference in New Issue