Skip to content

Commit f8bda6a

Browse files
authored
Merge pull request Armour#119 from Gcaufy/patch-1
fix: fixed to using setting title
2 parents c746c67 + c248d26 commit f8bda6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/layout/components/Sidebar/SidebarLogo.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,15 @@
3535

3636
<script lang="ts">
3737
import { Component, Prop, Vue } from 'vue-property-decorator'
38+
import settings from '@/settings'
3839
3940
@Component({
4041
name: 'SidebarLogo'
4142
})
4243
export default class extends Vue {
4344
@Prop({ required: true }) private collapse!: boolean
4445
45-
private title = 'Vue Typescript Admin'
46+
private title = settings.title
4647
}
4748
</script>
4849

0 commit comments

Comments
 (0)