39 lines
819 B
Vue
39 lines
819 B
Vue
<script lang="ts" setup>
|
|
import { computed } from "vue";
|
|
import { isExternal } from "@/utils/index";
|
|
import { useRouter } from "vue-router";
|
|
|
|
import { useAppStore } from "@/store/modules/app";
|
|
|
|
const appStore = useAppStore();
|
|
|
|
const sidebar = computed(() => appStore.sidebar);
|
|
const device = computed(() => appStore.device);
|
|
|
|
const props = defineProps({
|
|
to: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
});
|
|
|
|
const router = useRouter();
|
|
function push() {
|
|
if (device.value === "mobile" && sidebar.value.opened == true) {
|
|
appStore.closeSideBar(false);
|
|
}
|
|
router.push(props.to).catch((err) => {
|
|
console.error(err);
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<a v-if="isExternal(to)" :href="to" target="_blank" rel="noopener">
|
|
<slot></slot>
|
|
</a>
|
|
<div v-else @click="push">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|