THWLogo from API
This commit is contained in:
parent
abedef1583
commit
16348530ee
1 changed files with 5 additions and 6 deletions
|
@ -4,12 +4,7 @@
|
|||
<span class="d-none d-md-flex text-right thw-logo-font mr-2">
|
||||
{{ above }}
|
||||
</span>
|
||||
<v-img
|
||||
class="d-none d-sm-flex"
|
||||
max-width="56"
|
||||
max-height="56"
|
||||
:src="require('@/assets/thw.svg')"
|
||||
/>
|
||||
<v-img class="d-none d-sm-flex" width="56" height="56" :src="logo_url" />
|
||||
</div>
|
||||
<v-divider class="d-none d-md-block my-1" />
|
||||
<span class="d-none d-md-flex thw-logo-font">
|
||||
|
@ -28,6 +23,10 @@ export default class THWLogo extends Vue {
|
|||
|
||||
@Prop({ required: true })
|
||||
private readonly below!: string;
|
||||
|
||||
private get logo_url(): string {
|
||||
return this.$ovdashboard.api_url("file/get/logo");
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Reference in a new issue