mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 19:29:04 +08:00
72 lines
1.6 KiB
Vue
72 lines
1.6 KiB
Vue
<template>
|
|
<div class="app-logo" @click="handleGoHome">
|
|
<img :src="logo" />
|
|
<div v-if="show" class="logo-title ml-1 ellipsis">{{ globSetting.title }}</div>
|
|
</div>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent, PropType, ref, watch } from 'vue';
|
|
// hooks
|
|
import { useSetting } from '/@/hooks/core/useSetting';
|
|
|
|
import { PageEnum } from '/@/enums/pageEnum';
|
|
import logo from '/@/assets/images/logo.png';
|
|
import { useTimeout } from '/@/hooks/core/useTimeout';
|
|
import { useGo } from '/@/hooks/web/usePage';
|
|
|
|
export default defineComponent({
|
|
name: 'Logo',
|
|
props: {
|
|
showTitle: {
|
|
type: Boolean as PropType<boolean>,
|
|
default: true,
|
|
},
|
|
},
|
|
setup(props) {
|
|
const { globSetting } = useSetting();
|
|
const go = useGo();
|
|
function handleGoHome() {
|
|
go(PageEnum.BASE_HOME);
|
|
}
|
|
const showRef = ref<boolean>(!!props.showTitle);
|
|
watch(
|
|
() => props.showTitle,
|
|
(show: boolean) => {
|
|
if (show) {
|
|
useTimeout(() => {
|
|
showRef.value = show;
|
|
}, 280);
|
|
} else {
|
|
showRef.value = show;
|
|
}
|
|
}
|
|
);
|
|
return {
|
|
handleGoHome,
|
|
globSetting,
|
|
show: showRef,
|
|
logo,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
<style lang="less" scoped>
|
|
@import (reference) '../design/index.less';
|
|
|
|
.app-logo {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
|
|
.logo-title {
|
|
display: none;
|
|
font-family: Georgia, serif;
|
|
font-size: 16px;
|
|
.respond-to(medium,{
|
|
display: block;
|
|
});
|
|
}
|
|
}
|
|
</style>
|