diff --git a/frontend/src/components/LangSelect/index.vue b/frontend/src/components/LangSelect/index.vue index 6925ad4021..355e29fcac 100644 --- a/frontend/src/components/LangSelect/index.vue +++ b/frontend/src/components/LangSelect/index.vue @@ -13,12 +13,12 @@ English - + diff --git a/frontend/src/layout/components/Sidebar/Logo.vue b/frontend/src/layout/components/Sidebar/Logo.vue index 040fab6469..10a077f73f 100644 --- a/frontend/src/layout/components/Sidebar/Logo.vue +++ b/frontend/src/layout/components/Sidebar/Logo.vue @@ -7,6 +7,9 @@ + + +

{{ title }}

@@ -23,15 +26,19 @@ export default { } }, data() { + const { title } = this.$store.state.permission.currentRoutes.meta return { - title: 'Vue Admin Template', + title: title, logo: 'https://wpimg.wallstcn.com/69a1c46c-eb1c-4b46-8bd4-e9e686ef5251.png' + // logo: icon } } }