mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-03-24 06:22:34 +00:00
33 lines
647 B
Vue
33 lines
647 B
Vue
<template>
|
|
<div class="logo">
|
|
<router-link :to="{name:'dashboard'}">
|
|
<img src="~@/assets/logo.svg" alt="logo">
|
|
<h1 v-if="showTitle">{{ title }}</h1>
|
|
</router-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Logo",
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: 'Jeecg-Boot Pro',
|
|
required: false
|
|
},
|
|
showTitle: {
|
|
type: Boolean,
|
|
default: true,
|
|
required: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
/*缩小首页布 局顶部的高度*/
|
|
.sider .logo {
|
|
height: 59px!important;
|
|
line-height: 59px!important;
|
|
}
|
|
</style> |