fix Bug or esLink formatting

This commit is contained in:
Ah jung
2021-07-22 13:47:44 +08:00
parent f6be8f521e
commit 7f81152793
172 changed files with 10553 additions and 9031 deletions

View File

@@ -1,3 +1,3 @@
import Logo from './index.vue'
import Logo from './index.vue';
export { Logo }
export { Logo };

View File

@@ -1,39 +1,39 @@
<template>
<div class="logo">
<img src="~@/assets/images/logo.png" alt=""/>
<img src="~@/assets/images/logo.png" alt="" />
<h2 v-show="!collapsed" class="title">&nbsp;NaiveUiAdmin</h2>
</div>
</template>
<script>
export default {
name: 'Index',
props: {
collapsed: {
type: Boolean
}
}
}
export default {
name: 'Index',
props: {
collapsed: {
type: Boolean,
},
},
};
</script>
<style lang="less" scoped>
.logo {
display: flex;
align-items: center;
justify-content: center;
height: 64px;
line-height: 64px;
overflow: hidden;
white-space: nowrap;
.logo {
display: flex;
align-items: center;
justify-content: center;
height: 64px;
line-height: 64px;
overflow: hidden;
white-space: nowrap;
img {
width: auto;
height: 32px;
}
img {
width: auto;
height: 32px;
}
.title {
color: white;
margin-bottom: 0;
.title {
color: white;
margin-bottom: 0;
}
}
}
</style>