Merge branch 'main' of github.com:pure-admin/vue-pure-admin into gitee

This commit is contained in:
xiaoxian521 2023-05-26 23:27:51 +08:00
commit 24b645d462
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ const props = defineProps({
}); });
const { title } = useNav(); const { title } = useNav();
const topPath = getTopMenu().path; const topPath = getTopMenu()?.path;
</script> </script>
<template> <template>

View File

@ -50,7 +50,7 @@ const tabDom = ref();
const containerDom = ref(); const containerDom = ref();
const scrollbarDom = ref(); const scrollbarDom = ref();
const isShowArrow = ref(false); const isShowArrow = ref(false);
const topPath = getTopMenu().path; const topPath = getTopMenu()?.path;
const { VITE_HIDE_HOME } = import.meta.env; const { VITE_HIDE_HOME } = import.meta.env;
const { isFullscreen, toggle } = useFullscreen(); const { isFullscreen, toggle } = useFullscreen();

View File

@ -88,7 +88,7 @@ export function useNav() {
} }
function backTopMenu() { function backTopMenu() {
router.push(getTopMenu().path); router.push(getTopMenu()?.path);
} }
function onPanel() { function onPanel() {