54 lines
1.1 KiB
Vue
54 lines
1.1 KiB
Vue
<!--
|
|
* @Descripttion:
|
|
* @version:
|
|
* @Date: 2021-04-20 11:06:21
|
|
* @LastEditors: huzhushan@126.com
|
|
* @LastEditTime: 2021-04-21 09:35:35
|
|
* @Author: huzhushan@126.com
|
|
* @HomePage: https://huzhushan.gitee.io/vue3-element-admin
|
|
* @Github: https://github.com/huzhushan/vue3-element-admin
|
|
* @Donate: https://huzhushan.gitee.io/vue3-element-admin/donate/
|
|
-->
|
|
<template>
|
|
<div class="brand">
|
|
<img class="logo" src="~@/assets/logo.svg" @click="goHome" />
|
|
<div class="title">Vue3 Element Admin</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { defineComponent } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
const router = useRouter()
|
|
const goHome = () => {
|
|
router.push('/')
|
|
}
|
|
return { goHome }
|
|
},
|
|
})
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.brand {
|
|
height: 48px;
|
|
padding: 0 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
.logo {
|
|
cursor: pointer;
|
|
max-width: 32px;
|
|
max-height: 32px;
|
|
}
|
|
.title {
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: 700;
|
|
white-space: nowrap;
|
|
margin-left: 8px;
|
|
transition: all 0.5s;
|
|
}
|
|
}
|
|
</style>
|