|
@@ -5,7 +5,7 @@
|
|
|
{{ website.logo }}
|
|
|
</span>
|
|
|
</transition>
|
|
|
- <div v-if="logoUrl" style="width:140px;height: 40px">
|
|
|
+ <div v-if="logoUrl" style="width:140px;height: 40px; background-color: whitesmoke">
|
|
|
<el-image :src="logoUrl" style="width:140px;height: 40px"></el-image>
|
|
|
</div>
|
|
|
<transition-group v-if="!logoUrl" name="fade">
|
|
@@ -23,7 +23,7 @@ export default {
|
|
|
name: "logo",
|
|
|
data() {
|
|
|
return {
|
|
|
- logoUrl: null
|
|
|
+ logoUrl: 'img/admin-logo.png'
|
|
|
};
|
|
|
},
|
|
|
created() {
|